blob: a92efb398753af7248f9ba9cecb43db055bdee68 [file] [log] [blame]
# { dg-options "-fstropping=upper" } #
# While loop. #
BEGIN INT i := 0;
WHILE INT j = 5; i < j
DO i +:= 1 OD;
ASSERT (i = 5)
END