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