7 lines
77 B
Rust
7 lines
77 B
Rust
|
// error-pattern:fail
|
||
|
|
||
|
fn main() {
|
||
|
let a: @int = {
|
||
|
fail;
|
||
|
};
|
||
|
}
|