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