We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59bd03f commit 6cc4579Copy full SHA for 6cc4579
library/std/src/macros.rs
@@ -289,7 +289,7 @@ macro_rules! dbg {
289
// `$val` expression could be a block (`{ .. }`), in which case the `eprintln!`
290
// will be malformed.
291
() => {
292
- $crate::eprintln!("[{}:{}]", $crate::file!(), $crate::line!());
+ $crate::eprintln!("[{}:{}]", $crate::file!(), $crate::line!())
293
};
294
($val:expr $(,)?) => {
295
// Use of `match` here is intentional because it affects the lifetimes
0 commit comments