Files
openide/java/java-tests/testData/codeInsight/completion/normal/NoExceptionsWhenCompletingInapplicableClassNameAfterNew_after.java
Peter Gromov b65a8a3a35 java: fix PIEAE when completing a constructor call invalidates the class being completed
GitOrigin-RevId: bf6a03e359482f777e63e38383ecc4160cca82ec
2020-09-02 16:19:10 +00:00

8 lines
142 B
Java

class Cx {
Another F = new Cx()<caret>Another(
f -> ((String)f).stream().anyMatch(c -> c.m(f) != null));
}
class Another {}