Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
rust-2018
/
uniform-paths
/
deadlock.rs
blob: d2296c51bdd3911955b9a17410b1b42580e7bfca [
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 unresolved imports `bar::foo`, `foo::bar`
fn
main
()
{}