rust/tests/run-make/symlinked-extern/baz.rs

7 lines
77 B
Rust

extern crate bar;
extern crate foo;
fn main() {
bar::bar(foo::foo());
}