Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
attributes
/
tool_attributes.rs
blob: fc05488e44c4a72c5f9de98ecc20900d75359fa5 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Scoped attributes should not trigger an unused attributes lint.
#![
deny
(
unused_attributes
)]
fn
main
()
{
#[
rustfmt
::
skip
]
foo
();
}
fn
foo
()
{
assert
!(
true
);
}