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, 0 insertions, 20 deletions
diff --git a/src/test/input/TestLoop.java b/src/test/input/TestLoop.java
deleted file mode 100644
index 4275153..0000000
--- a/src/test/input/TestLoop.java
+++ /dev/null
@@ -1,20 +0,0 @@
-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");
- }
- }
-
- }
-
-}