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

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

end.