blob: 5a2f29907957d319b38a4e9fa73813bb159ddee0 [file] [log] [blame]
// 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() {}