summaryrefslogtreecommitdiff
path: root/test/files/neg/t5589neg.check
Commit message (Collapse)AuthorAgeFilesLines
* virtpatmat on by default; chicken out: -XoldpatmatAdriaan Moors2012-04-141-1/+4
| | | | | | | some tests (unreachability, exhaustivity, @switch annotation checking) are still run under -Xoldpatmat, but that will change before we go into RC mode (then the test/ partest of this commit will be reverted) removed irrelevant dependency on patmat
* Restore irrefutability commits.Paul Phillips2012-03-201-0/+37
| | | | This reverts commit d8ba5d091e5641553b438ef9930a6023a2709dcd.
* Revert irrefutability commits.Paul Phillips2012-03-201-37/+0
| | | | | Temporary reversion of irrefutability commits in interests of stable milestone. Expect to restore shortly.
* Spiced up the irrefutability tests a bit.Paul Phillips2012-03-191-7/+14
|
* Finally did something about broken irrefutability.Paul Phillips2012-03-191-0/+30
The parser has always been confused about tuple patterns in for comprehensions. It thinks it can fail to recognize an irrefutable pattern and have it removed in refchecks, but it is sadly mistaken, because the unnecessary filter has a tendency to fail the compile in typer. Look more intently for irrefutable patterns and don't insert the unnecessary filter. Closes SI-5589, SI-1336.