blob: 52c31c347314a0fb6477ea85fc553b1e766485c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
type
Enumeration = (one, two, three)
var
x: [3]Int := [1, 2, 3]
y: []Int
program()
begin
y := x[Enumeration.one to Enumeration.two] (* @Error Array index must be an integral type, but got 'Enumeration' *)
end.
|