aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/pos
Commit message (Collapse)AuthorAgeFilesLines
* Re-instantiate depmeth testsMartin Odersky2017-02-281-0/+45
| | | | | These now compile with the changes to dependent methods, except for one which is invalid under dotty.
* Change testsMartin Odersky2016-07-115-0/+626
| | | | | | | | | | | | | | | | - compileMixed failed because there was a cycle between immutable.Seq (compiled) and parallel.ParSeq (loaded from classfile). Inspection of the completion log (turn completions Printer on) and the stack trace showed that there's nothing we can do here. The old hk scheme did not go into the cycle because it did not force an unrelated type. I believe with enough tweaking we would also hva egotten a cycle in the old hk scheme. The test is "fixed" by adding parallel.ParSeq to the files to compile. - Disable named parameter tests Those tests do not work yet with the revised hk scheme. Before trying to fix this, we should first decide what parts of named parameters should be kept.
* Annotate repeated params with `case` flag to indicate that they are legalFelix Mulder2016-05-271-1/+1
| | | | | | | One drawback with this approach is that the type seems to propagate. I.e. if the return type of an expression is `repeated` then the enclosing variable will get the `repeated` type instead of getting the expected `Seq` type
* Don't evaluate isInstanceOf for value classes, disable bugged testsFelix Mulder2016-05-261-0/+4
| | | | | | | The tests `i1059.scala` and `t3480.scala` are failing due to a bug in pattern matcher that evaluates the `x` in `List(x: _*)` incorrectly. Concerned issue: #1276
* Enable tests for old fixed issuesGuillaume Martres2016-02-091-8/+0
| | | | Fix #530, #654, #681, #684, #685
* Bring back tests from disabled.Martin Odersky2015-06-073-52/+0
| | | | The tests in this commit pos were verified to work again.
* Fix refs to inner objectsMartin Odersky2015-06-071-14/+0
| | | | | | | | A reference to an object from anywhere in its module class can be established by the This of the module class. The previous behavior always referenced the object as a term ref which might cause a reference to the outer This which might not be available (since this is not tracked by ExplicitOuter). Brings t3174.scala back from disabled.
* Categorize disabled tests into pos/runMartin Odersky2015-05-275-0/+74