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