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

13 lines
162 B
Rust
Raw Normal View History

2011-10-11 20:01:54 -05:00
// -*- rust -*-
// error-pattern: unsafe functions can only be called
native "cdecl" mod test {
2011-10-11 20:01:54 -05:00
unsafe fn free();
}
fn main() {
let x = test::free;
}