mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
11 lines
176 B
Rust
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;
|