rust/src/test
Patrick Walton 22179f49e5 librustc: Feature gate subslice matching in non-tail positions.
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]
2014-09-08 11:04:14 -07:00
..
auxiliary add tests for separate compilation 2014-09-05 09:18:57 -07:00
bench Optimize Slice::reverse 2014-09-05 14:12:20 -07:00
codegen Add pub to all the codegen tests 2013-10-10 06:00:51 -07:00
compile-fail librustc: Feature gate subslice matching in non-tail positions. 2014-09-08 11:04:14 -07:00
compile-fail-fulldeps Add lint groups; define built-in lint groups bad_style and unused 2014-08-30 09:12:04 +12:00
debuginfo test: Ignore failing gdb pretty tests 2014-09-02 08:34:00 -07:00
pretty Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
run-fail auto merge of #16628 : pczarn/rust/hashmap-opt, r=nikomatsakis 2014-09-05 17:36:25 +00:00
run-make Added test for link path ordering 2014-09-07 11:42:02 +02:00
run-pass librustc: Feature gate subslice matching in non-tail positions. 2014-09-08 11:04:14 -07:00
run-pass-fulldeps Add lint groups; define built-in lint groups bad_style and unused 2014-08-30 09:12:04 +12:00