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
scala> trait T { def t(a: Any): Any }; trait U; abstract class C extends T
defined trait T
defined trait U
defined class C
scala> ((x => x): T with U): U
java.lang.ClassCastException: $$Lambda$1143/103433239 cannot be cast to U
... 28 elided