blob: fa3dd2255f8c2ebf335077803bdf984064aa2262 (
plain)
1
2
3
4
5
6
7
8
9
10
|
var
slice: []Int
array: [2]Int
program()
begin
slice.ptr := array.ptr (* @Error Cannot assign to a value of type 'const \^Int', because it is constant or contains constant members *)
return 0u8
end.
|