Sign in
rust
/
rust-lang
/
rust
/
1b01decc1ca851e014b6951bdd7f2ac2f897adc9
/
.
/
tests
/
ui
/
underscore-imports
/
unused-2018.rs
blob: c1295e18a1266842d84d2001f90d80dccfa6ed2d [
file
] [
log
] [
blame
]
//@ edition:2018
#![
deny
(
unused_imports
)]
mod
multi_segment
{
use
core
::
any
;
//~ ERROR unused import: `core::any`
}
mod
single_segment
{
use
core
;
//~ ERROR unused import: `core`
}
mod
single_segment_underscore
{
use
core
as
_
;
// OK
}
fn
main
()
{}