Files
fernflower/test/test/output/TestEclipse7.java
Roman Shevchenko 78ef309b3e project cleanup
- test classes (src/test/*) moved to separate root
- stray .class files dropped
- binary files (bin/, dist/full/, dist/obfuscated/) excluded from the repo
- .classpath and .gitignore updated accordingly
- invalid import statements removed
2014-05-19 15:04:06 +04:00

16 lines
321 B
Java

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();
}
}
}