JavaTXCompilerInJavaTX/bin/mycompiler/test/blocks/TestTryCatchBlock.jav
2013-10-18 13:33:46 +02:00

14 lines
141 B
Java
Executable File

public class TestTryCatchBlock {
public m() {
try {
return new TestTryCatchBlock();
}
catch (e) {
return null;
}
}
}