about summary refs log tree commit diff
path: root/tests/run-make/interdependent-c-libraries/main.rs
blob: a429030d3a2b4b2b52e8cf9043dec58ff756e4a8 (plain)
1
2
3
4
5
6
extern crate bar;
extern crate foo;

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