rust/src/test/ui/foreign-unsafe-fn-called.rs
2018-12-25 21:08:33 -07:00

11 lines
137 B
Rust

mod test {
extern {
pub fn free();
}
}
fn main() {
test::free();
//~^ ERROR call to unsafe function is unsafe
}