blob: abbe462021ed74c14b8a6b0912123e1afcb4473e [file] [log] [blame]
mod test {
extern "C" {
pub fn free();
}
}
fn main() {
test::free();
//~^ ERROR call to unsafe function is unsafe
}