aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/valueclasses/t9298
Commit message (Collapse)AuthorAgeFilesLines
* Fix compatibility of Java with value classesGuillaume Martres2015-05-043-0/+19
This avoids getting a runtime error when calling a Java-defined method whose signature contains value classes. It happened because we erased the value classes in this signature even though it comes from a classfile. Amusingly, this problem also exists in scalac: <https://issues.scala-lang.org/browse/SI-9298>