rust/src/test/run-pass/tool_attributes.rs
2018-12-25 21:08:33 -07:00

12 lines
177 B
Rust

// Scoped attributes should not trigger an unused attributes lint.
#![deny(unused_attributes)]
fn main() {
#[rustfmt::skip]
foo ();
}
fn foo() {
assert!(true);
}