9 lines
115 B
Rust
9 lines
115 B
Rust
// error-pattern: calculated effect is 'unsafe'
|
|
|
|
native mod foo {
|
|
fn naughty();
|
|
}
|
|
|
|
fn main() {
|
|
foo.naughty();
|
|
} |