rust/tests/run-make/link-native-static-lib-to-d.../foo.rs

7 lines
98 B
Rust

#![crate_type = "dylib"]
#[link(name = "foo", kind = "static")]
extern "C" {
pub fn foo();
}