aboutsummaryrefslogtreecommitdiff
path: root/testsuite/fail_compilation/assign_member_of_const.elna
blob: fc945bbc32b9ac9bd533cc5eac89dcc20c40eef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
type
  R = record
    x: Int
  end

proc f()
var
  r: const R := R{ x: 5 }
begin
  r.x := 6 (* @Error Cannot assign to a value of type 'const Int', because it is constant or contains constant members *)
return

end.