summaryrefslogtreecommitdiffstats
path: root/testData/results/TestClassSwitch.dec
diff options
context:
space:
mode:
Diffstat (limited to 'testData/results/TestClassSwitch.dec')
-rw-r--r--testData/results/TestClassSwitch.dec16
1 files changed, 16 insertions, 0 deletions
diff --git a/testData/results/TestClassSwitch.dec b/testData/results/TestClassSwitch.dec
new file mode 100644
index 0000000..496dd15
--- /dev/null
+++ b/testData/results/TestClassSwitch.dec
@@ -0,0 +1,16 @@
+package pkg;
+
+
+public class TestClassSwitch {
+
+ public void testCaseOrder(int var1) {
+ switch(var1) {
+ case 5:
+ System.out.println(5);
+ default:
+ return;
+ case 13:
+ System.out.println(13);
+ }
+ }
+}