]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/regions-infer-borrow-scope-view.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / regions-infer-borrow-scope-view.rs
index 67542a5ded1d844c305749eda55b1bb7ca8b56b1..b031cfea93e06e1772932ad8d27e06cbdd9acbd7 100644 (file)
@@ -8,11 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+use std::vec_ng::Vec;
+
 fn view<'r, T>(x: &'r [T]) -> &'r [T] {x}
 
 pub fn main() {
     let v = vec!(1, 2, 3);
-    let x = view(v);
-    let y = view(x);
-    assert!((v[0] == x[0]) && (v[0] == y[0]));
+    let x = view(v.as_slice());
+    let y = view(x.as_slice());
+    assert!((*v.get(0) == x[0]) && (*v.get(0) == y[0]));
 }