aboutsummaryrefslogtreecommitdiff
path: root/testsuite/fail_compilation/constant_enum_to_int.elna
blob: 4be613181170a49e5f85c26634e093a6d6a791f3 (plain)
1
2
3
4
5
6
7
8
9
10
type
  Enumeration = (one, two, three)

var
  x: [3]Int := [1, 2, 3]
  y: []Int

begin
  y := x[Enumeration.one to Enumeration.two] (* @Error Array index must be an integral type, but got 'Enumeration' *)
end.