]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/monad.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / monad.rs
index 5df6738797d795576b662ce04b1f0741f7343ba1..182aa94700658b9aca998019f9d33d4c6260ceb1 100644 (file)
@@ -10,6 +10,8 @@
 
 // ignore-fast
 
+use std::vec_ng::Vec;
+
 trait vec_monad<A> {
     fn bind<B>(&self, f: |&A| -> Vec<B> ) -> Vec<B> ;
 }