blob: 5fac0e739669e1e716b09857f11dcbf226bb2b1e [file] [log] [blame]
#[link(name = "library", kind = "static")]
extern "C" {
fn overflow();
}
fn main() {
unsafe {
overflow();
}
}