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

6 lines
100 B
Rust
Raw Normal View History

// error-pattern: writing to immutable type
fn main() {
let rec(int x) r = rec(x=1);
r.x = 6;
}