rust/tests/ui/extern/auxiliary/reexport-should-still-link.rs

6 lines
51 B
Rust

pub use foo::bar;
mod foo {
pub fn bar() {}
}