about summary refs log tree commit diff
path: root/src/test/auxiliary
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-03-26 18:34:27 -0700
committerBrian Anderson <banderson@mozilla.com>2015-03-27 12:50:49 -0700
commit1639e51f6e4d036478705f4581de3a7417ccec0f (patch)
tree2d46d1f1d593b0433ecfc0ca491bf1a9dfc74504 /src/test/auxiliary
parent199bdcfeff5cfafd1f8e8ff583d7209272469879 (diff)
downloadrust-1639e51f6e4d036478705f4581de3a7417ccec0f.tar.gz
rust-1639e51f6e4d036478705f4581de3a7417ccec0f.zip
Feature gate *all* slice patterns. #23121
Until some backwards-compatibility hazards are fixed in #23121,
these need to be unstable.

[breaking-change]
Diffstat (limited to 'src/test/auxiliary')
-rw-r--r--src/test/auxiliary/roman_numerals.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/auxiliary/roman_numerals.rs b/src/test/auxiliary/roman_numerals.rs
index a105cb7ae6c..8ddca3cb103 100644
--- a/src/test/auxiliary/roman_numerals.rs
+++ b/src/test/auxiliary/roman_numerals.rs
@@ -12,6 +12,7 @@
 
 #![crate_type="dylib"]
 #![feature(plugin_registrar, rustc_private)]
+#![feature(slice_patterns)]
 
 extern crate syntax;
 extern crate rustc;