aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/writing-to-immutable-rec.rs
blob: 3755c549ff53449b30fb814eac44e59bedb1b204 (plain) (blame)
1
2
3
4
5
6
7
8
// xfail-stage0
// xfail-stage1
// xfail-stage2
// error-pattern: writing to immutable type
fn main() {
  let rec(int x) r = rec(x=1);
  r.x = 6;
}