rust/tests/run-make/issue-28595/b.rs
2023-03-30 07:34:55 -05:00

13 lines
132 B
Rust

extern crate a;
#[link(name = "b", kind = "static")]
extern "C" {
pub fn b();
}
fn main() {
unsafe {
b();
}
}