]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/reexport-star.rs
Sync portable-simd to rust-lang/portable-simd@72df4c45056a8bc0d1b3f06fdc828722177f0763
[rust.git] / src / test / ui / imports / reexport-star.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 mod a {
5     pub fn f() {}
6     pub fn g() {}
7 }
8
9 mod b {
10     pub use a::*;
11 }
12
13 pub fn main() {
14     b::f();
15     b::g();
16 }