2018-11-17 11:34:25 -06:00
|
|
|
// edition:2018
|
|
|
|
// compile-flags:--extern foo --extern bar
|
|
|
|
|
2021-11-26 15:39:44 -06:00
|
|
|
use bar::foo; //~ ERROR can't find crate for `bar`
|
2019-09-01 02:01:25 -05:00
|
|
|
use foo::bar; //~ ERROR can't find crate for `foo`
|
2021-11-26 15:39:44 -06:00
|
|
|
//~^^ ERROR unresolved imports `bar::foo`, `foo::bar`
|
2018-11-17 11:34:25 -06:00
|
|
|
|
|
|
|
fn main() {}
|