rust/tests/run-make-fulldeps/symlinked-extern/baz.rs
2023-01-11 09:32:08 +00:00

7 lines
77 B
Rust

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