rust/src/test/compile-fail/unsafe-for.rs

7 lines
139 B
Rust
Raw Normal View History

2011-06-08 22:48:19 +02:00
// error-pattern:invalidate alias x
fn main() {
let v: [mutable int] = [mutable 1, 2, 3];
for x: int in v { v[0] = 10; log x; }
}