Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
rust-2018
/
unresolved-asterisk-imports.rs
blob: ad1064570c77b2bfec319cc4261ea694d392bd8a [
file
] [
log
] [
blame
]
// edition:2018
use
not_existing_crate
::*;
//~ ERROR unresolved import `not_existing_crate
use
std
as
foo
;
fn
main
()
{}