rust/tests/ui/imports/import4.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
113 B
Rust
Raw Normal View History

2020-12-06 23:01:35 +00:00
//@ error-pattern: import
2020-12-06 23:01:35 +00:00
mod a { pub use b::foo; }
mod b { pub use a::foo; }
2020-12-06 23:01:35 +00:00
fn main() { println!("loop"); }