blob: 92d676991429500872cb7d5f37144693b0880d08 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 *)
return 0u8
end.
|