summary refs log tree commit diff
path: root/src/test/ui/rust-2018/uniform-paths/deadlock.rs
blob: 3228d799083fb228c255d26b1325cebe3498612d (plain)
1
2
3
4
5
6
7
// edition:2018
// compile-flags:--extern foo --extern bar

use foo::bar; //~ ERROR unresolved import
use bar::foo;

fn main() {}