summary refs log tree commit diff
path: root/src/test/ui/tool-attributes/tool-attributes-misplaced-2.rs
blob: 56b908d94cc88293a39839dbf24cc16b87b7ba3d (plain)
1
2
3
4
5
6
#[derive(rustfmt::skip)] //~ ERROR expected a macro, found tool attribute
struct S;

fn main() {
    rustfmt::skip!(); //~ ERROR expected a macro, found tool attribute
}