2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-29 06:23:21 +00:00
rust-clippy/tests/ui/crashes/procedural_macro.rs

11 lines
176 B
Rust

#[macro_use]
extern crate clippy_mini_macro_test;
#[deny(warnings)]
fn main() {
let x = Foo;
println!("{:?}", x);
}
#[derive(ClippyMiniMacroTest, Debug)]
struct Foo;