Skip to content

Commit 1639e51

Browse files
committed
Feature gate *all* slice patterns. rust-lang#23121
Until some backwards-compatibility hazards are fixed in rust-lang#23121, these need to be unstable. [breaking-change]
1 parent 199bdcf commit 1639e51

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+93
-3
lines changed

src/doc/reference.md

+7-3

src/doc/trpl/patterns.md

+1

src/libcollections/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#![feature(step_by)]
4141
#![feature(str_char)]
4242
#![feature(convert)]
43+
#![feature(slice_patterns)]
4344
#![cfg_attr(test, feature(rand, rustc_private, test, hash, collections))]
4445
#![cfg_attr(test, allow(deprecated))] // rand
4546

src/libcoretest/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#![feature(debug_builders)]
2727
#![feature(unique)]
2828
#![feature(step_by)]
29+
#![feature(slice_patterns)]
2930
#![allow(deprecated)] // rand
3031

3132
extern crate core;

src/librustc/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
#![feature(str_char)]
4646
#![feature(convert)]
4747
#![feature(into_cow)]
48+
#![feature(slice_patterns)]
4849
#![cfg_attr(test, feature(test))]
4950

5051
#![allow(trivial_casts)]

src/librustdoc/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
#![feature(path_ext)]
4040
#![feature(path_relative_from)]
4141
#![feature(convert)]
42+
#![feature(slice_patterns)]
4243

4344
extern crate arena;
4445
extern crate getopts;

src/libstd/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
#![feature(allow_internal_unstable)]
130130
#![feature(str_char)]
131131
#![feature(into_cow)]
132+
#![feature(slice_patterns)]
132133
#![cfg_attr(test, feature(test, rustc_private, std_misc))]
133134

134135
// Don't link to std. We are std.

src/libsyntax/feature_gate.rs

+8
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Status)] = &[
153153
// below (it has to be checked before expansion possibly makes
154154
// macros disappear).
155155
("allow_internal_unstable", "1.0.0", Active),
156+
157+
// #23121. Array patterns have some hazards yet.
158+
("slice_patterns", "1.0.0", Active),
156159
];
157160
// (changing above list without updating src/doc/reference.md makes @cmr sad)
158161

@@ -694,6 +697,11 @@ impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
694697
but at the end of a slice (e.g. \
695698
`[0, ..xs, 0]` are experimental")
696699
}
700+
ast::PatVec(..) => {
701+
self.gate_feature("slice_patterns",
702+
pattern.span,
703+
"slice pattern syntax is experimental");
704+
}
697705
ast::PatBox(..) => {
698706
self.gate_feature("box_patterns",
699707
pattern.span,

src/libsyntax/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#![feature(str_char)]
4242
#![feature(convert)]
4343
#![feature(into_cow)]
44+
#![feature(slice_patterns)]
4445

4546
extern crate arena;
4647
extern crate fmt_macros;

src/test/auxiliary/roman_numerals.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
#![crate_type="dylib"]
1414
#![feature(plugin_registrar, rustc_private)]
15+
#![feature(slice_patterns)]
1516

1617
extern crate syntax;
1718
extern crate rustc;

src/test/compile-fail/borrowck-match-binding-is-assignment.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// Test that immutable pattern bindings cannot be reassigned.
1212

13+
#![feature(slice_patterns)]
14+
1315
enum E {
1416
Foo(isize)
1517
}

src/test/compile-fail/borrowck-move-out-of-vec-tail.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// Test that we do not permit moves from &[] matched by a vec pattern.
1212

13+
#![feature(slice_patterns)]
14+
1315
#[derive(Clone, Debug)]
1416
struct Foo {
1517
string: String

src/test/compile-fail/borrowck-vec-pattern-element-loan.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#![feature(advanced_slice_patterns)]
12+
#![feature(slice_patterns)]
1213

1314
fn a<'a>() -> &'a [isize] {
1415
let vec = vec!(1, 2, 3, 4);

src/test/compile-fail/borrowck-vec-pattern-loan-from-mut.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn a() {
1214
let mut v = vec!(1, 2, 3);
1315
let vb: &mut [isize] = &mut v;

src/test/compile-fail/borrowck-vec-pattern-move-tail.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
let mut a = [1, 2, 3, 4];
1315
let t = match a {

src/test/compile-fail/borrowck-vec-pattern-nesting.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#![feature(advanced_slice_patterns)]
1212
#![feature(box_patterns)]
1313
#![feature(box_syntax)]
14+
#![feature(slice_patterns)]
1415

1516
fn a() {
1617
let mut vec = [box 1, box 2, box 3];

src/test/compile-fail/borrowck-vec-pattern-tail-element-loan.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn a<'a>() -> &'a isize {
1214
let vec = vec!(1, 2, 3, 4);
1315
let vec: &[isize] = &vec; //~ ERROR `vec` does not live long enough

src/test/compile-fail/feature-gate-advanced-slice-features.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
let x = [ 1, 2, 3, 4, 5 ];
1315
match x {

src/test/compile-fail/issue-12369.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
let sl = vec![1,2,3];
1315
let v: isize = match &*sl {

src/test/compile-fail/issue-12567.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn match_vecs<'a, T>(l1: &'a [T], l2: &'a [T]) {
1214
match (l1, l2) {
1315
([], []) => println!("both empty"),

src/test/compile-fail/issue-13482-2.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// compile-flags:-Z verbose
1212

13+
#![feature(slice_patterns)]
14+
1315
fn main() {
1416
let x = [1,2];
1517
let y = match x {

src/test/compile-fail/issue-13482.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
let x = [1,2];
1315
let y = match x {

src/test/compile-fail/issue-15381.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
let values: Vec<u8> = vec![1,2,3,4,5,6,7,8];
1315

src/test/compile-fail/issue-6804.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#![feature(rustc_attrs)]
12+
#![feature(slice_patterns)]
1213
#![allow(dead_code)]
1314

1415
// Matching against NaN should result in a warning

src/test/compile-fail/match-ref-ice.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
// The arity of `ref x` is always 1. If the pattern is compared to some non-structural type whose
1214
// arity is always 0, an ICE occurs.
1315
//

src/test/compile-fail/match-vec-fixed.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn a() {
1214
let v = [1, 2, 3];
1315
match v {

src/test/compile-fail/match-vec-mismatch-2.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
match () {
1315
[()] => { }

src/test/compile-fail/match-vec-mismatch.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn main() {
1214
match "foo".to_string() {
1315
['f', 'o', ..] => {} //~ ERROR mismatched types

src/test/compile-fail/match-vec-unreachable.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
1112

1213
fn main() {
1314
let x: Vec<(isize, isize)> = Vec::new();

src/test/compile-fail/non-exhaustive-match-nested.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
enum t { a(u), b }
1214
enum u { c, d }
1315

src/test/compile-fail/non-exhaustive-match.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
enum t { a, b, }
1214

1315
fn main() {

src/test/compile-fail/non-exhaustive-pattern-witness.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#![feature(advanced_slice_patterns)]
12+
#![feature(slice_patterns)]
1213

1314
struct Foo {
1415
first: bool,

src/test/compile-fail/regions-pattern-typing-issue-19552.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
fn assert_static<T: 'static>(_t: T) {}
1214

1315
fn main() {

src/test/run-make/graphviz-flowgraph/f07.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(slice_patterns)]
12+
1113
pub fn pat_vec_7() {
1214
match [7, 77, 777, 7777] {
1315
[x, y, ..] => x + y

src/test/run-pass/destructure-array-1.rs

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
// pretty-expanded FIXME #23616
1515

16+
#![feature(slice_patterns)]
17+
1618
struct D { x: u8 }
1719

1820
impl Drop for D { fn drop(&mut self) { } }

src/test/run-pass/ignore-all-the-things.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// pretty-expanded FIXME #23616
1212

1313
#![feature(advanced_slice_patterns)]
14+
#![feature(slice_patterns)]
1415

1516
struct Foo(int, int, int, int);
1617
struct Bar{a: int, b: int, c: int, d: int}

src/test/run-pass/issue-13027.rs

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
// Tests that match expression handles overlapped literal and range
1414
// properly in the presence of guard function.
1515

16+
#![feature(slice_patterns)]
17+
1618
fn val() -> uint { 1 }
1719

1820
static CONST: uint = 1;

src/test/run-pass/issue-15080.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// pretty-expanded FIXME #23616
1212

13+
#![feature(slice_patterns)]
14+
1315
fn main() {
1416
let mut x: &[_] = &[1, 2, 3, 4];
1517

src/test/run-pass/issue-15104.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// pretty-expanded FIXME #23616
1212

13+
#![feature(slice_patterns)]
14+
1315
fn main() {
1416
assert_eq!(count_members(&[1, 2, 3, 4]), 4);
1517
}

src/test/run-pass/issue-16648.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// pretty-expanded FIXME #23616
1212

13+
#![feature(slice_patterns)]
14+
1315
fn main() {
1416
let x: (int, &[int]) = (2, &[1, 2]);
1517
assert_eq!(match x {

src/test/run-pass/issue-17877.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// pretty-expanded FIXME #23616
1212

13+
#![feature(slice_patterns)]
14+
1315
fn main() {
1416
assert_eq!(match [0u8; 1024] {
1517
_ => 42_usize,

src/test/run-pass/issue-7784.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// pretty-expanded FIXME #23616
1212

1313
#![feature(advanced_slice_patterns)]
14+
#![feature(slice_patterns)]
1415

1516
use std::ops::Add;
1617

src/test/run-pass/match-vec-alternatives.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// pretty-expanded FIXME #23616
1212

1313
#![feature(advanced_slice_patterns)]
14+
#![feature(slice_patterns)]
1415

1516
fn match_vecs<'a, T>(l1: &'a [T], l2: &'a [T]) -> &'static str {
1617
match (l1, l2) {

0 commit comments

Comments
 (0)