rust/src/test/compile-fail/native-makes-unsafe.rs
2010-06-23 21:03:09 -07:00

9 lines
115 B
Rust

// error-pattern: calculated effect is 'unsafe'
native mod foo {
fn naughty();
}
fn main() {
foo.naughty();
}