Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
rust-2018
/
unresolved-asterisk-imports.rs
blob: 809f1dbc6d277ebd22fbd592828ee4dc2cc81b19 [
file
] [
log
] [
blame
]
//@ edition:2018
use
not_existing_crate
::*;
//~ ERROR unresolved import `not_existing_crate
use
std
as
foo
;
fn
main
()
{}