Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
use
/
use-paths-as-items.rs
blob: 7b5eb56b18fd8f16f11373a98a3834d59da5455a [
file
] [
log
] [
blame
]
// Each path node in a `use` declaration must be treated as an item. If not, the following code
// will trigger an ICE.
//
// Related issue: #25763
use
std
::{
mem
,
ptr
};
use
std
::
mem
;
//~ ERROR the name `mem` is defined multiple times
fn
main
()
{}