Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
imports
/
unused-import-issue-87973.rs
blob: 1b016ff814c6bf46ce17977940f6b7abe731e39f [
file
] [
log
] [
blame
]
//@ run-rustfix
#![
deny
(
unused_imports
)]
// Check that attributes get removed too. See #87973.
#[
deprecated
]
#[
allow
(
unsafe_code
)]
#[
cfg
(
not
(
FALSE
))]
use
std
::
fs
;
//~^ ERROR unused import
fn
main
()
{}