mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 03:00:36 +00:00
14 lines
143 B
Rust
14 lines
143 B
Rust
//@ check-pass
|
|
|
|
pub use bar::*;
|
|
mod bar {
|
|
pub use super::*;
|
|
}
|
|
|
|
pub use baz::*;
|
|
mod baz {
|
|
pub use crate::main as f;
|
|
}
|
|
|
|
pub fn main() {}
|