blob: 1a3be80e898baf02d661b24c764c9a30f9da9017 [file] [log] [blame] [edit]
#[link(name = "test")]
extern "C" {
fn foo() -> i32;
}
fn main() {
unsafe {
foo();
}
}