-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
17
Even after the fix for JDK-8169629, the same error can be thrown with lambda of a different type like
Function<Integer,Integer> f = x->x;
rather than
Runnable r = () -> {};
Function<Integer,Integer> f = x->x;
rather than
Runnable r = () -> {};
- relates to
-
JDK-8169629 Annotations with lambda expressions cause AnnotationFormatError
- Resolved
- links to
-
Review openjdk/jdk/4642