Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
rust-2018
/
unresolved-asterisk-imports.rs
blob: 809f1dbc6d277ebd22fbd592828ee4dc2cc81b19 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
use
not_existing_crate
::*;
//~ ERROR unresolved import `not_existing_crate
use
std
as
foo
;
fn
main
()
{}