Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/if/methodInvocation.java
T

11 lines
133 B
Java

package templates;
public class Foo {
void m() {
bar().if<caret>
}
boolean bar() {
return true;
}
}