mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
15 lines
193 B
Rust
15 lines
193 B
Rust
// https://github.com/rust-lang/rust/issues/32797
|
|
//@ check-pass
|
|
|
|
pub use bar::*;
|
|
mod bar {
|
|
pub use super::*;
|
|
}
|
|
|
|
pub use baz::*;
|
|
mod baz {
|
|
pub use crate::main as f;
|
|
}
|
|
|
|
pub fn main() {}
|