summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/procedural_macro.rs
blob: c7468493380c8eb3f994279c32102242fd477fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#[macro_use]
extern crate clippy_mini_macro_test;

#[deny(warnings)]
fn main() {
    let x = Foo;
    println!("{:?}", x);
}

#[derive(ClippyMiniMacroTest, Debug)]
struct Foo;