summaryrefslogtreecommitdiff
path: root/test/files/neg/t5589neg.scala
Commit message (Collapse)AuthorAgeFilesLines
* Restore irrefutability commits.Paul Phillips2012-03-201-0/+6
| | | | This reverts commit d8ba5d091e5641553b438ef9930a6023a2709dcd.
* Revert irrefutability commits.Paul Phillips2012-03-201-6/+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-22/+0
|
* Finally did something about broken irrefutability.Paul Phillips2012-03-191-0/+28
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.