diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-10-18 19:58:52 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-10-18 19:58:52 +0000 |
commit | c52b7e74751dd0d7f279b191d690682aea929e57 (patch) | |
tree | 2365223f576207452a6e8dcbb0b809eeac92fb4f /regress/usr.bin/bc/t8.in | |
parent | 54e128fd59038d206f8cb7a77b5ec8ee3fd447ea (diff) |
Regressions for continue.
Diffstat (limited to 'regress/usr.bin/bc/t8.in')
-rw-r--r-- | regress/usr.bin/bc/t8.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/regress/usr.bin/bc/t8.in b/regress/usr.bin/bc/t8.in new file mode 100644 index 00000000000..b2f1c180d67 --- /dev/null +++ b/regress/usr.bin/bc/t8.in @@ -0,0 +1,6 @@ +while (a < 10) { + a += 1; + if (a == 2) if (1) continue; + if (a == 7) if (1) continue; + a +} |