summaryrefslogtreecommitdiffstats
path: root/src/test/output/TestEclipse7.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/output/TestEclipse7.java')
-rw-r--r--src/test/output/TestEclipse7.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/output/TestEclipse7.java b/src/test/output/TestEclipse7.java
new file mode 100644
index 0000000..a37b582
--- /dev/null
+++ b/src/test/output/TestEclipse7.java
@@ -0,0 +1,15 @@
+package test.output;
+
+import java.lang.reflect.Method;
+
+public class TestEclipse7 {
+
+ public void testMultiCatch() {
+ try {
+ Method e = this.getClass().getDeclaredMethod("foo", new Class[0]);
+ } catch (SecurityException | NoSuchMethodException var2) {
+ var2.printStackTrace();
+ }
+
+ }
+}