Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
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
()
{}