about summary refs log tree commit diff
path: root/src/test/compile-fail/feature-gate-advanced-slice-features.rs
AgeCommit message (Collapse)AuthorLines
2017-12-07Migrate a few feature gate tests to uiest31-22/+0
Renames only in this commit, and obviously .stderr file additions.
2017-01-12Mark even more tests as gate testsest31-0/+2
Now, no feature outside of the whitelist is without a test marked as its gate test.
2015-03-27Feature gate *all* slice patterns. #23121Brian Anderson-0/+2
Until some backwards-compatibility hazards are fixed in #23121, these need to be unstable. [breaking-change]
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2015-01-31Kill more `isize`sTobias Bucher-1/+1
2015-01-08Update compile-fail tests to use is/us, not i/u.Huon Wilson-1/+1
2014-09-09Test fixes from the rollupAlex Crichton-3/+3
2014-09-08librustc: Feature gate subslice matching in non-tail positions.Patrick Walton-0/+19
This breaks code that uses the `..xs` form anywhere but at the end of a slice. For example: match foo { [ 1, ..xs, 2 ] [ ..xs, 1, 2 ] } Add the `#![feature(advanced_slice_patterns)]` gate to reenable the syntax. RFC #54. Closes #16951. [breaking-change]