summaryrefslogtreecommitdiff
path: root/test/files/run/t6646.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7247, deprecated NotNull.Paul Phillips2013-03-131-3/+3
| | | | | | | | Removed NotNull from tests and the parentage of AnyVal. Removed the tests which were actually testing anything to do with NotNull; massaged the others to forget NotNull and/or not to name local things NotNull.
* SI-6646 `ident` or Ident is always new binding.Jason Zaugg2012-11-131-0/+6
| | | | | | | | | | | The previous commit regressed in these cases: // no withFilter for (X <- List("A single ident is always a pattern")) println(X) for (`x` <- List("A single ident is always a pattern")) println(`x`) At the top level of the LHS of a <-, such identifiers represent new bindings, not stable identifier patterns.
* SI-6646 Fix regression in for desugaring.Jason Zaugg2012-11-101-0/+13
The early check in the parser of pattern irrefutability, added in c82ecab, failed to consider InitCaps and `backquoted` identifiers.