Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/try/simpleWithThrowsCheckedException.java
T

9 lines
138 B
Java

import java.io.IOException;
public class Foo {
void m() {
doAct().try<caret>
}
void doAct() throws IOException {}
}