aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t920.scala
Commit message (Collapse)AuthorAgeFilesLines
* Reinstantiate t920Martin Odersky2016-02-171-0/+24
| | | | | | Got deleted by accident. Version in run has object renamed to prevent case clashes on MacOS. Version that exhibits the clash is in pending/run.
* Move test to pendingMartin Odersky2016-02-111-20/+0
| | | | | | | | | | The underlying problem on MacOS/Windows remains: We have a class `B` and an object `b` in the same scope. We used to get a conflict on `B$/b$` because we created an empty companion object for `B`. Now we get a conflict for `B/b`, because the `b` object creates to classes: `b.class` an `b$.class` and `b.class` clashes with `B.class`.
* Enable tests for old fixed issuesGuillaume Martres2016-02-091-0/+20
Fix #530, #654, #681, #684, #685