We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SEMICOLON_IN_EXPRESSIONS_FROM_MACROS
1 parent 82c5814 commit b5ddc10Copy full SHA for b5ddc10
std/src/macros.rs
@@ -290,7 +290,7 @@ macro_rules! dbg {
290
// `$val` expression could be a block (`{ .. }`), in which case the `eprintln!`
291
// will be malformed.
292
() => {
293
- $crate::eprintln!("[{}:{}]", $crate::file!(), $crate::line!());
+ $crate::eprintln!("[{}:{}]", $crate::file!(), $crate::line!())
294
};
295
($val:expr $(,)?) => {
296
// Use of `match` here is intentional because it affects the lifetimes
0 commit comments