Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
use
/
use-mod
/
use-mod-4.rs
blob: 46ae8ddadc094d49912ed8d2e19b2b50d4317b7f [
file
] [
log
] [
blame
]
use
foo
::
self
;
//~ ERROR unresolved import `foo`
//~^ ERROR `self` imports are only allowed within a { } list
use
std
::
mem
::
self
;
//~^ ERROR `self` imports are only allowed within a { } list
fn
main
()
{}