mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-06 06:30:25 +00:00
19 lines
188 B
Rust
19 lines
188 B
Rust
// check-pass
|
|
|
|
mod foo {
|
|
pub use bar::*;
|
|
pub use main as f;
|
|
}
|
|
|
|
mod bar {
|
|
pub use foo::*;
|
|
}
|
|
|
|
pub use foo::*;
|
|
pub use baz::*;
|
|
mod baz {
|
|
pub use super::*;
|
|
}
|
|
|
|
pub fn main() {}
|