JavaPatternMatching/bin/mycompiler/test/blocks/TestTryCatchBlock.jav

14 lines
141 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
public class TestTryCatchBlock {
public m() {
try {
return new TestTryCatchBlock();
}
catch (e) {
return null;
}
}
}