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