]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/match-vec-alternatives.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / match-vec-alternatives.rs
index de1bb02bfefc675964c5a482975ddcc741538572..ae4fd1f1993b7227ebcded4fa9c28e999972dacb 100644 (file)
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+#![feature(advanced_slice_patterns)]
+
 fn match_vecs<'a, T>(l1: &'a [T], l2: &'a [T]) -> &'static str {
     match (l1, l2) {
         ([], []) => "both empty",