mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 21:27:18 +00:00
14 lines
126 B
Rust
14 lines
126 B
Rust
// error-pattern:import
|
|
|
|
mod a {
|
|
pub use b::x;
|
|
}
|
|
|
|
mod b {
|
|
pub use a::x;
|
|
|
|
fn main() { let y = x; }
|
|
}
|
|
|
|
fn main() {}
|