blob: de3de286fc93ae6bc80343f56d1e737af46b4116 [file] [log] [blame]
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
mod test {
extern "C" {
pub fn free();
}
}
fn main() {
test::free();
//~^ ERROR call to unsafe function is unsafe
}