blob: fc05488e44c4a72c5f9de98ecc20900d75359fa5 [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);
}