2019-04-05 00:22:36 -05:00
|
|
|
// run-pass
|
|
|
|
|
2017-12-20 10:16:43 -06:00
|
|
|
#[macro_use]
|
|
|
|
extern crate clippy_mini_macro_test;
|
2016-06-25 11:12:29 -05:00
|
|
|
|
|
|
|
#[deny(warnings)]
|
|
|
|
fn main() {
|
2017-12-20 10:16:43 -06:00
|
|
|
let x = Foo;
|
|
|
|
println!("{:?}", x);
|
2016-06-25 11:12:29 -05:00
|
|
|
}
|
2017-12-20 10:16:43 -06:00
|
|
|
|
|
|
|
#[derive(ClippyMiniMacroTest, Debug)]
|
2018-12-09 16:26:16 -06:00
|
|
|
struct Foo;
|