rust/tests/run-make/native-lib-load-order/a.rs

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

7 lines
93 B
Rust
Raw Normal View History

#![crate_type = "rlib"]
#[link(name = "a", kind = "static")]
2020-09-01 21:12:52 +00:00
extern "C" {
pub fn a();
}