summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rust-2018/uniform-paths/deadlock.rs
blob: 2427bde6d18bcbe543e2f92d9101d7a85f3d1a07 (plain)
1
2
3
4
5
6
7
8
// 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() {}