mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
16 lines
164 B
Rust
16 lines
164 B
Rust
#![allow(ambiguous_glob_reexports)]
|
|
|
|
mod m1 {
|
|
pub fn f() {}
|
|
}
|
|
mod m2 {
|
|
pub fn f(_: u8) {}
|
|
}
|
|
|
|
pub use m1::*;
|
|
pub use m2::*;
|
|
|
|
pub mod glob {
|
|
pub use *;
|
|
}
|