rust/src/test/run-pass/auxiliary/reexport-should-still-link.rs
2018-12-25 21:08:33 -07:00

6 lines
51 B
Rust

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