rust/src/test/ui/rust-2018/uniform-paths/deadlock.rs

8 lines
139 B
Rust
Raw Normal View History

// edition:2018
// compile-flags:--extern foo --extern bar
use foo::bar; //~ ERROR can't find crate for `foo`
use bar::foo;
fn main() {}