mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
135 B
Rust
14 lines
135 B
Rust
// check-pass
|
|
|
|
pub use bar::*;
|
|
mod bar {
|
|
pub use super::*;
|
|
}
|
|
|
|
pub use baz::*;
|
|
mod baz {
|
|
pub use main as f;
|
|
}
|
|
|
|
pub fn main() {}
|