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
I got the following difference for i0306.scala
```
< val x: scala.AnyRef = new bar.C[scala.collection.Seq[_ >: scala.Nothing <: scala.Any]]()
---
> val x: scala.AnyRef = new ([T >: scala.Nothing <: scala.collection.Seq[_ >: scala.Nothing <: scala.Any]] => bar.C[T])[scala.collection.Seq[_ >: scala.Nothing <: scala.Any]]()
That is, the output has eta expanded bar.C to [T] => bar.C[T]. It's not done during unpickling as far as I can see, so some code must do it afterwards.
0 commit comments