]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reexport-star.rs
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[rust.git] / src / test / ui / 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 }