blob: be4a10c0ee933a2eba4a658bbdd5eb8536cd1c4b [file] [log] [blame]
// run-pass
// Scoped attributes should not trigger an unused attributes lint.
#![deny(unused_attributes)]
fn main() {
#[rustfmt::skip]
foo ();
}
fn foo() {
assert!(true);
}