rust/tests/run-make/issue-15460/foo.rs

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

7 lines
98 B
Rust
Raw Normal View History

#![crate_type = "dylib"]
#[link(name = "foo", kind = "static")]
2020-09-01 16:12:52 -05:00
extern "C" {
pub fn foo();
}