1
Fork 0
rust/tests/ui/imports/import-loop.rs

7 lines
89 B
Rust

use y::x;
mod y {
pub use y::x; //~ ERROR unresolved import `y::x`
}
fn main() { }