summaryrefslogtreecommitdiffstats
path: root/src/test/input/TestLoop.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/input/TestLoop.java')
-rw-r--r--src/test/input/TestLoop.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/input/TestLoop.java b/src/test/input/TestLoop.java
new file mode 100644
index 0000000..4275153
--- /dev/null
+++ b/src/test/input/TestLoop.java
@@ -0,0 +1,20 @@
+package test.input;
+
+public class TestLoop {
+
+ public static void main(String[] args) {
+
+ boolean a = true;
+ while(true) {
+ try {
+ if(!a) {
+ return;
+ }
+ } finally {
+ System.out.println("1");
+ }
+ }
+
+ }
+
+}