about summary refs log tree commit diff
path: root/src/test/run-pass/tool_attributes.rs
blob: 506c11011a6da16876fed5df6bb5ec3cbc67da06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Scoped attributes should not trigger an unused attributes lint.

#![deny(unused_attributes)]

fn main() {
    #[rustfmt::skip]
    foo ();
}

fn foo() {
    assert!(true);
}