aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/cond-clause-2.a68
blob: f8e5d5f037106dfc419b57affe587768843acc4d (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