mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
9 lines
232 B
Rust
9 lines
232 B
Rust
//@ 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() {}
|