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