]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/block-iter-2.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / block-iter-2.rs
index ba4bdbe636caf997ea6e4661fca320e09d720a60..a8d65dbdeca8b6833937261c5789f6023e3e5436 100644 (file)
@@ -10,6 +10,8 @@
 
 // ignore-fast
 
+use std::vec_ng::Vec;
+
 fn iter_vec<T>(v: Vec<T> , f: |&T|) { for x in v.iter() { f(x); } }
 
 pub fn main() {