8 lines
95 B
Rust
8 lines
95 B
Rust
// xfail-stage0
|
|
fn main() {
|
|
let vec[int] x = [];
|
|
for (int i in x) {
|
|
fail "moop";
|
|
}
|
|
}
|