summaryrefslogtreecommitdiff
path: root/test/files/run/t4171.check
Commit message (Collapse)AuthorAgeFilesLines
* Overcame long-maddening existential issue.Paul Phillips2012-02-101-0/+3
When performing an existential transform, the bounds produced by the hidden symbols may contain references to the hidden symbols, but these references were not accounted for. This was at the root of some bad behavior with existentials. If you've ever seen a message like this: <console>:8: error: type mismatch; found : B(in value res0) where type B(in value res0) <: A with ScalaObject required: B(in value res0) forSome { type B(in value res0) <: A with ScalaObject; type A <: Object with ScalaObject } ...then you know what I mean. Closes SI-4171, not quite yet on SI-1195, SI-1201.