]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/vec-dst.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / vec-dst.rs
index d8bf0a5c627f68f29fd3358512fe7263fd862a64..40073c2b742197834e58828d75efab50f125ab63 100644 (file)
@@ -8,10 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+#![allow(unknown_features)]
+#![feature(box_syntax)]
+
 pub fn main() {
-    // Tests for indexing into box/& [T, ..n]
-    let x: [int, ..3] = [1, 2, 3];
-    let mut x: Box<[int, ..3]> = box x;
+    // Tests for indexing into box/& [Tn]
+    let x: [int3] = [1, 2, 3];
+    let mut x: Box<[int3]> = box x;
     assert!(x[0] == 1);
     assert!(x[1] == 2);
     assert!(x[2] == 3);
@@ -20,8 +23,8 @@ pub fn main() {
     assert!(x[1] == 45);
     assert!(x[2] == 3);
 
-    let mut x: [int, ..3] = [1, 2, 3];
-    let x: &mut [int, ..3] = &mut x;
+    let mut x: [int3] = [1, 2, 3];
+    let x: &mut [int3] = &mut x;
     assert!(x[0] == 1);
     assert!(x[1] == 2);
     assert!(x[2] == 3);