From 3854b67daac14188d47a86bb6b84ccb00c087f5f Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Mon, 1 Sep 2014 15:05:08 +0400 Subject: java-decompiler: post-import cleanup (tests reorganized) --- testData/results/TestClassSwitch.dec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 testData/results/TestClassSwitch.dec (limited to 'testData/results/TestClassSwitch.dec') 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); + } + } +} -- cgit v1.2.3