aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/assignation-int-5.a68
blob: 2b67b21fae2be4d9e74017fec48a77c5ff95412d (plain)
1
2
3
4
5
6
# { dg-options "-fstropping=upper" }  #
BEGIN INT x := 10;
      REF INT xx := x;
      x := 20;
      ASSERT ((xx := (INT j; x)) = 20)
END