Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/diamond/NestedClassArgConstructor.java
Anna Kozlova 79200753fb [java] fix spaces in test data
GitOrigin-RevId: d18a60e9f966bf88b2fc2504cc1386606a980941
2022-07-08 14:04:21 +00:00

12 lines
328 B
Java

class R<T> {
static class O {
public O(<error descr="'R.this' cannot be referenced from a static context">T</error> t) {
}
}
public static void main(String[] args) {
test(new R<>.O<error descr="'O(java.lang.Object)' in 'R.O' cannot be applied to '()'">()</error>);
}
private static void test(R.O o) { }
}