aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/cond-clause-1.a68
blob: 059bb8a6117915799221068a32948d66c1ecb4be (plain)
1
2
3
4
5
# { dg-options "-fstropping=upper" }  #
BEGIN INT i := 10, x;
      IF i > 5 THEN x := i FI;
      ASSERT (x = i)
END