Files
rust/tests/ui/imports/import4.rs

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

5 lines
122 B
Rust
Raw Normal View History

2020-12-07 02:01:35 +03:00
mod a { pub use b::foo; }
mod b { pub use a::foo; } //~ ERROR unresolved import `a::foo`
2020-12-07 02:01:35 +03:00
fn main() { println!("loop"); }