diff options
Diffstat (limited to 'testsuite/fail_compilation/assign_element_of_const.elna')
| -rw-r--r-- | testsuite/fail_compilation/assign_element_of_const.elna | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/fail_compilation/assign_element_of_const.elna b/testsuite/fail_compilation/assign_element_of_const.elna index 9afd520..a5b5cda 100644 --- a/testsuite/fail_compilation/assign_element_of_const.elna +++ b/testsuite/fail_compilation/assign_element_of_const.elna @@ -1,6 +1,6 @@ proc f() var - a: const [2]Int + a: const [2]Int := [2]Int{ 1, 3 } begin a[1] := 6 (* @Error Cannot assign to a value of type 'const Int', because it is constant or contains constant members *) return |
