Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
use
/
use-mod
/
use-mod-4.rs
blob: 34ce7c719575824133e2db98d9d1b1d25903704e [
file
] [
log
] [
blame
]
use
crate
::
foo
::
self
;
//~ ERROR unresolved import `crate::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
()
{}