aboutsummaryrefslogtreecommitdiff
path: root/testsuite/compilable/const_var_chain.elna
blob: ad85f48f7e6e7f750b29700cd73a1123399d94b9 (plain)
1
2
3
4
5
6
7
8
9
10
var
  x: const Int := 42
  y: Int := x

program()
begin
  assert(y = 42)
return 0u8

end.