9 lines
91 B
Rust
9 lines
91 B
Rust
// error-pattern:fail
|
|
fn f(-a: @int) {
|
|
fail;
|
|
}
|
|
|
|
fn main() {
|
|
let a = @0;
|
|
f(a);
|
|
} |