aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/nested-pattern.rs
Commit message (Collapse)AuthorAgeFilesLines
* Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke2011-05-121-4/+4
| | | | This should be a snapshot transition.
* Rename std modules to be camelcasedMarijn Haverbeke2011-05-061-4/+4
| | | | (Have fun mergining your stuff with this.)
* Fix some nested patterns in rustcTim Chevalier2011-04-281-0/+29
In rustc, nested patterns were potentially matching when they shouldn't match, because a loop index wasn't being incremented. Fixed it and added one test case.