summaryrefslogtreecommitdiffstats
path: root/src/test/output/TestEclipse7.java
blob: a37b58293acd52ae35daa2cf27c4410abc7595f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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();
      }

   }
}