aboutsummaryrefslogtreecommitdiff
path: root/testsuite/fail_compilation/assign_slice_ptr.elna
blob: aa7a379609e7c0681547259358fbf534c5d941b0 (plain)
1
2
3
4
5
6
7
var
  slice: []Int
  array: [2]Int

begin
  slice.ptr := array.ptr (* @Error Cannot assign to a value of type 'const \^Int', because it is constant or contains constant members *)
end.