]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/procedural_macro.rs
Auto merge of #3744 - phansch:fix3144, r=oli-obk
[rust.git] / tests / ui / crashes / procedural_macro.rs
1 #[macro_use]
2 extern crate clippy_mini_macro_test;
3
4 #[deny(warnings)]
5 fn main() {
6     let x = Foo;
7     println!("{:?}", x);
8 }
9
10 #[derive(ClippyMiniMacroTest, Debug)]
11 struct Foo;