about summary refs log tree commit diff
path: root/src/test/compile-fail/vec-matching-obsolete-syntax.rs
AgeCommit message (Collapse)AuthorLines
2015-01-14Remove old obsolete syntax testsAdolfo OchagavĂ­a-22/+0
2015-01-08Update compile-fail tests to use is/us, not i/u.Huon Wilson-1/+1
2014-09-08librustc: Change the syntax of subslice matching to use postfix `..`Patrick Walton-0/+22
instead of prefix `..`. This breaks code that looked like: match foo { [ first, ..middle, last ] => { ... } } Change this code to: match foo { [ first, middle.., last ] => { ... } } RFC #55. Closes #16967. [breaking-change]