aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test6.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/relooper/test6.txt')
-rw-r--r--src/relooper/test6.txt15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/relooper/test6.txt b/src/relooper/test6.txt
index 0ec7e666..c5effd08 100644
--- a/src/relooper/test6.txt
+++ b/src/relooper/test6.txt
@@ -1,11 +1,12 @@
//0
-L1:
-if (check(0)) {
- //1
- if (!(check(1))) {
- break L1;
+do {
+ if (check(0)) {
+ //1
+ if (!(check(1))) {
+ break;
+ }
+ //2
}
- //2
-}
+} while(0);
//3