summaryrefslogtreecommitdiff
path: root/test/files/run/t594.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-21 09:40:33 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-05-21 09:40:33 +0200
commit75c411c85115d7907f8e2cbe0fb16bd5618ba8a5 (patch)
treed9de5c63c66d99473acefe98654ff8d730a0ed10 /test/files/run/t594.scala
parent051456c94b45057c617ae802a427533b9c8590b6 (diff)
downloadscala-75c411c85115d7907f8e2cbe0fb16bd5618ba8a5.tar.gz
scala-75c411c85115d7907f8e2cbe0fb16bd5618ba8a5.tar.bz2
scala-75c411c85115d7907f8e2cbe0fb16bd5618ba8a5.zip
SI-8607 Fix erasure for value class inheriting from private class
The fix for SI-4283 added a pre-emptive cast of the qualifier of a selection `qual.a` to avoid later casting to the owner of `a` if that owner might be inaccessible at the call site. This fixed a `LinkageError`. In the enclosed test, this cast led to the following diff in the tree shapes (with respect to a version with a public base class). [erasure] - new p1.C.<init>(c.$asInstanceOf[scala.this.Int]()).a(); + new p1.C.<init>(new p1.C.<init>(c.$asInstanceOf[scala.this.Int]()).$asInstanceOf[ErasedValueType( class C, scala.this.Int)]().$asInstanceOf[scala.this.Int]()).a(); [posterasure] - new p1.C.<init>(c).a(); + new p1.C.<init>(new p1.C.<init>(c).$asInstanceOf[scala.this.Int]().$asInstanceOf[scala.this.Int]()) .a(); () What we really wanted to end up with is: new p1.C.<init>(c).$asInstanceOf[C]().a(); The stray cast leads to the crash: error: should have been unboxed by erasure: new p1.C.<init>(c).$asInstanceOf[scala.this.Int]() Rather than trying to fix this in erasure/posterasure, this commit instead relies on the fact the owner of `a` cannot be Java defined if `qual`s type is a derived value class. This follows from the restrictions we place on value classes. With this knowledge, we elide the cast altogether in this case.
Diffstat (limited to 'test/files/run/t594.scala')
0 files changed, 0 insertions, 0 deletions