-
Bug
-
Resolution: Fixed
-
P3
-
None
-
b44
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8085300 | emb-9 | Maurizio Cimadamore | P3 | Resolved | Fixed | team |
The following code:
import java.util.stream.*;
class Test {
private void constructFlavoredObject(Stream<List<?>> sl) {
Runnable r = new Runnable() {
public void run() {
Stream<List<?>> constructor = sl.filter(c -> true);
}
};
}
}
Causes a javac crash if javac is ran using the option -XDfind=lambda
import java.util.stream.*;
class Test {
private void constructFlavoredObject(Stream<List<?>> sl) {
Runnable r = new Runnable() {
public void run() {
Stream<List<?>> constructor = sl.filter(c -> true);
}
};
}
}
Causes a javac crash if javac is ran using the option -XDfind=lambda
- backported by
-
JDK-8085300 Javac crashes in finder mode with nested implicit lambdas
-
- Resolved
-
- relates to
-
JDK-8064365 Better support for finder capabilities in target-typing context
-
- Closed
-