rust/src/test/compile-fail/writing-to-immutable-rec.rs

6 lines
104 B
Rust
Raw Normal View History

2011-06-22 08:35:02 -07:00
// error-pattern: assignment to immutable field
fn main() {
let rec(int x) r = rec(x=1);
r.x = 6;
}