Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/new/notClassCallWithClass.java
T

7 lines
106 B
Java

public class Foo {
void m(): Foo {
m().new<caret>
return new Foo();
}
}