Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
tool_attributes.rs
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
);
}