Files
openide/java/java-tests/testData/codeInsight/highlight/remove_new/beforeDiamond.java
2022-06-08 11:14:32 +00:00

12 lines
126 B
Java

// "Remove 'new'" "true"
class A<T> {
int x() {
return new A<>.<caret>y();
}
static int y() {
return 1;
}
}