summaryrefslogtreecommitdiffstats
path: root/src/test/input/TestEclipse7.java
diff options
context:
space:
mode:
authorStiver <stiver.mail@gmail.com>2014-03-04 15:13:11 +0100
committerStiver <stiver.mail@gmail.com>2014-03-04 15:13:11 +0100
commite2d0f5d9c38561d67f23754c00addb4a3547efb2 (patch)
tree1832f16037c086b48266b8566aecc61f45f4e5f1 /src/test/input/TestEclipse7.java
downloadfernflower-e2d0f5d9c38561d67f23754c00addb4a3547efb2.tar
fernflower-e2d0f5d9c38561d67f23754c00addb4a3547efb2.tar.gz
fernflower-e2d0f5d9c38561d67f23754c00addb4a3547efb2.tar.lz
fernflower-e2d0f5d9c38561d67f23754c00addb4a3547efb2.tar.xz
fernflower-e2d0f5d9c38561d67f23754c00addb4a3547efb2.zip
initial commit
Diffstat (limited to 'src/test/input/TestEclipse7.java')
-rw-r--r--src/test/input/TestEclipse7.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/test/input/TestEclipse7.java b/src/test/input/TestEclipse7.java
new file mode 100644
index 0000000..f8bb127
--- /dev/null
+++ b/src/test/input/TestEclipse7.java
@@ -0,0 +1,59 @@
+package test.input;
+
+import java.io.FileReader;
+import java.io.IOException;
+import java.lang.reflect.Method;
+
+public class TestEclipse7 {
+
+
+// public void testTryResources() throws IOException {
+//
+// try (FileReader reader = new FileReader("file"); FileReader reader1 = new FileReader("file")) {
+// System.out.println();
+// }
+//
+// }
+//
+// public void testTryResources1() throws IOException {
+//
+// try (FileReader reader = new FileReader("file")) {
+// System.out.println("block");
+// } catch(RuntimeException ex) {
+// System.out.println(ex.toString());
+// } finally {
+// System.out.println("finally");
+// }
+//
+// }
+
+ public void testMultiCatch() {
+
+ try {
+ Method method = getClass().getDeclaredMethod("foo");
+ } catch (NoSuchMethodException | SecurityException e) {
+ e.printStackTrace();
+ }
+ }
+
+
+// public void testSwitchString() {
+//
+// String s = "";
+// switch(s) {
+// case "Aa": // "xyz":
+// System.out.println("!");
+// break;
+// case "BB": // "abc":
+// System.out.println("?");
+// break;
+// case "__":
+// System.out.println("_");
+// break;
+// default:
+// System.out.println("#");
+// }
+//
+// }
+
+}