rust/src/test/compile-fail/native-unsafe-fn-called.rs

11 lines
161 B
Rust
Raw Normal View History

2011-10-11 18:01:54 -07:00
// -*- rust -*-
// error-pattern: safe function calls function marked unsafe
native "cdecl" mod test {
2011-10-11 18:01:54 -07:00
unsafe fn free();
}
fn main() {
test::free();
}