about summary refs log tree commit diff
path: root/tests/ui/rust-2018/uniform-paths/deadlock.rs
blob: d2296c51bdd3911955b9a17410b1b42580e7bfca (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 unresolved imports `bar::foo`, `foo::bar`

fn main() {}