summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/auxiliary/reexport-should-still-link.rs
blob: 237ea8dfcf3f867a7df4fe8d5ac8cd774252d271 (plain)
1
2
3
4
5
pub use foo::bar;

mod foo {
    pub fn bar() {}
}