aboutsummaryrefslogtreecommitdiff
path: root/testsuite/compilable/const_alias.elna
blob: e17c55fe4c556b700f32c351f04b8f4e4edfd7c5 (plain)
1
2
3
4
5
6
7
8
9
10
type
  CI = const Int
  CCI = const CI

var
  x: CCI := 8
  y: const CI := 9

begin
end.