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

use foo::bar; //~ ERROR can't find crate for `foo`
use bar::foo;

fn main() {}