blob: ac8f9dfe3f15d671e8b0d4c12e2a41e10bf00cb0 (
plain)
1
2
3
4
5
6
7
|
var
slice: []Int
array: [2]Int
begin
array.length := slice.length (* @Error Cannot assign to a value of type 'const Word', because it is constant or contains constant members *)
end.
|