We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80985f9 commit ca6d7cbCopy full SHA for ca6d7cb
crates/snapbox-macros/src/lib.rs
@@ -20,6 +20,7 @@ pub use std::eprintln;
20
#[macro_export]
21
macro_rules! debug {
22
($($arg:tt)*) => ({
23
+ #![allow(unexpected_cfgs)] // HACK: until we upgrade the minimum anstream
24
$crate::eprint!("[{:>w$}] \t", module_path!(), w = 28);
25
$crate::eprintln!($($arg)*);
26
})
0 commit comments