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

program()
begin
  x := @y
return 0u8

end.