We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In some cases after unpickling path-dependent types become type projections. Example:
trait Z { type Q def test: Q } class X(val x: Z) class Y(x: Z) extends X(x) { x.test }
x.test before pickling:
<<Y.this.x:=> Z>.test:=> Y.this.x.Q>
x.test after unpickling:
<<Y.this.x:=> Z>.test:=> Z#Q>