summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/symlinked-extern/baz.rs
blob: cd433a3ac7a3ebdc73a60292c8e643454dc687e8 (plain)
1
2
3
4
5
6
extern crate bar;
extern crate foo;

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