Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
lint
/
unused
/
issue-59896.rs
blob: ff9f19acf84713c181a76570a5d820f59aae1e9f [
file
] [
log
] [
blame
]
#![
deny
(
unused_imports
)]
struct
S
;
fn
main
()
{
use
S
;
//~ ERROR the item `S` is imported redundantly
let
_s
=
S
;
}