blob: 42f9a07fff3896395c6e67876b73cb54790526a9 [file] [log] [blame]
mod a {
pub use crate::b::x;
}
mod b {
pub use crate::a::x; //~ ERROR unresolved import `crate::a::x`
fn main() { let y = x; }
}
fn main() {}