mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 14:47:48 +00:00
8 lines
113 B
Rust
8 lines
113 B
Rust
//@ error-pattern: import
|
|
|
|
|
|
mod a { pub use b::foo; }
|
|
mod b { pub use a::foo; }
|
|
|
|
fn main() { println!("loop"); }
|