Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
rust-2018
/
uniform-paths
/
deadlock.rs
blob: 4011ba3ee282273c46abd0829b4f3417805c442e [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
//@ compile-flags:--extern foo --extern bar
use
bar
::
foo
;
//~ ERROR can't find crate for `bar`
use
foo
::
bar
;
//~ ERROR can't find crate for `foo`
//~^^ ERROR unresolved imports `bar::foo`, `foo::bar`
fn
main
()
{}