Files
rust/tests/run-make/interdependent-c-libraries/main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
68 B
Rust
Raw Normal View History

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