blob: f79d9ab6460b893bf7911c2f79cabc038c58cdc5 [file] [log] [blame]
// run-pass
#[macro_use]
extern crate clippy_mini_macro_test;
#[deny(warnings)]
fn main() {
let x = Foo;
println!("{:?}", x);
}
#[derive(ClippyMiniMacroTest, Debug)]
struct Foo;