]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/nullable-pointer-size.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / nullable-pointer-size.rs
index 9ce68fa8ffcdb3453a8e978c68f17f3ea8e8dea1..75a98913c971a49e26eccf90ac734dc230109427 100644 (file)
@@ -11,6 +11,7 @@
 #[feature(macro_rules)];
 
 use std::mem;
+use std::vec_ng::Vec;
 
 enum E<T> { Thing(int, T), Nothing((), ((), ()), [i8, ..0]) }
 struct S<T>(int, T);
@@ -41,6 +42,5 @@ pub fn main() {
     check_type!(~int);
     check_type!(@int);
     check_type!(~str);
-    check_type!(Vec<int> );
     check_type!(extern fn());
 }