rust/tests/run-make/redundant-libs/main.rs

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

12 lines
107 B
Rust
Raw Normal View History

2019-03-07 14:12:48 -06:00
extern "C" {
fn bar();
fn baz();
}
fn main() {
unsafe {
bar();
baz();
}
}