blob: 6689a82fa2c4947e0114f0f66879c02ef86eb148 [file] [log] [blame]
#![crate_type = "staticlib"]
extern "C" {
fn this_symbol_not_defined();
}
#[no_mangle]
pub extern "C" fn foo() {
unsafe { this_symbol_not_defined(); }
}