Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
rust-2018
/
uniform-paths
/
deadlock.rs
blob: 2427bde6d18bcbe543e2f92d9101d7a85f3d1a07 [
file
] [
log
] [
blame
]
// 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
()
{}