rust/tests/run-make-fulldeps/staticlib-blank-lib/foo.rs
2023-01-11 09:32:08 +00:00

7 lines
97 B
Rust

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