]> git.lizzy.rs Git - rust.git/blob - src/test/ui/auxiliary/reexport-should-still-link.rs
Rollup merge of #62971 - GuillaumeGomez:keyword-sidebar, r=nobody
[rust.git] / src / test / ui / auxiliary / reexport-should-still-link.rs
1 pub use foo::bar;
2
3 mod foo {
4     pub fn bar() {}
5 }