summaryrefslogtreecommitdiff
path: root/test/files/neg/t8044.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-8044 Allow binding backquoted varid in patternsSom Snytt2016-05-201-0/+4
Previously, a varid could not be backquoted, so that it was not possible to introduce variables with names such as `type` in a match expression. This commit allows backquoted varids in `case x @ _` and `case x: Int`. In neither position is a stable id accepted, that is, an id with leading uppercase. Therefore, this commit merely relaxes the backquoted varid to be taken as a normal varid in these contexts.