You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#23179
Since JDK 9, argument checks for LambdaMetaFactory have become stricter.
Which is to say that its JDK 8 version was too lax.
We now align with Scala 2's behavior and erase `Array[? >: AnyRef]`
to `Object[]` instead of just `Object`. This seems consistent with
how we handle `Array[Any]`, which also erases to `Object[]`.
0 commit comments