summaryrefslogtreecommitdiff
path: root/test/files/neg/t5589neg.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5981, SI-5979, SI-5973 Closed. Maintenance to Try.Heather Miller2012-07-051-2/+2
|
* moving patmat to its own phaseAdriaan Moors2012-05-021-4/+1
| | | | | | | | | | | | | | | | | | | | sort field accessors, necessary after typers -- apparently... don't throw TypeError, use issueTypeError don't run patmat phase when -Xoldpatmat only virtualize matches when -Xexperimental recycle cps type of match for re-typechecking: when one of the internal cps-type-state annotations is present, strip all CPS annotations a cps-type-state-annotated type makes no sense as an expected type (matchX.tpe is used as pt in translateMatch) don't synth FunctionN impls during typer, only do this for PartialFunction updated check now function synth for match is deferred until uncurry patmat-transform try/catch with match in cps cleanup in selective anf remove TODO: can there be cases that are not CaseDefs -- nope
* 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.