aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/tangledCompanion.scala
Commit message (Collapse)AuthorAgeFilesLines
* Index members of a class before evaluating its parentsMartin Odersky2016-07-291-0/+26
Avoids missing member in tangledCompanion.scala, which is a minimization of intermittent failures in CollectionStrawMan6. Intermittent, because it depended on order of compilation. CollectionTests have to be compiled together with but before CollectionStrawMan6 (this was _sometimes_ the case because partest did not honor indicated compilation order so far). I.e. dotc CollectionTests_2.scala CollectionStrawMan6_1.scala would trigger the error. tangledCompanion.scala captures the dependencies in a single file.