]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/deep-vector2.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / deep-vector2.rs
index b644d1a8b1f9db95f2bf73997af7e2c9017b0691..615e94c3f4e59fc1dc70de7319dcfbb0da0e4d71 100644 (file)
@@ -8,8 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// ignore-test
+// ignore-fast
+//
+// Too big for our poor macro infrastructure.
+
 pub fn main() {
-    let _x = ~[
+    let _x = vec!(
         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -8008,5 +8013,5 @@ pub fn main() {
         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    ];
+    );
 }