mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
163 B
Rust
17 lines
163 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
mod a {
|
|
pub fn f() {}
|
|
pub fn g() {}
|
|
}
|
|
|
|
mod b {
|
|
pub use a::*;
|
|
}
|
|
|
|
pub fn main() {
|
|
b::f();
|
|
b::g();
|
|
}
|