Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advFixture/DiamondsWithAnonymousProtectedConstructor.java
Anna Kozlova 316376de9c java: fix cache disabled due to recursion prevention (IDEA-249293)
protected constructor in the anonymous' base class may lead to recursive hierarchy build

GitOrigin-RevId: 3c03c12ad6bf0d9cdf1480daa93f36ef5448a803
2020-08-28 07:44:03 +00:00

8 lines
84 B
Java

package c;
import a.*;
class Test {
{
Base<String> b = new Base<>() {};
}
}