]> git.lizzy.rs Git - rust.git/blobdiff - src/test/auxiliary/issue-2631-a.rs
Replace all ~"" with "".to_owned()
[rust.git] / src / test / auxiliary / issue-2631-a.rs
index 15dde899ce374c2de5bdd1d99ab9c97af96f9173..5da5653f26e644ad19a2979d9b34043460feab3c 100644 (file)
@@ -8,18 +8,18 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#[feature(managed_boxes)];
-#[crate_id="req"];
-#[crate_type = "lib"];
+#![feature(managed_boxes)]
+#![crate_id="req"]
+#![crate_type = "lib"]
 
-extern mod extra;
+extern crate collections;
 
 use std::cell::RefCell;
-use std::hashmap::HashMap;
+use collections::HashMap;
 
-pub type header_map = HashMap<~str, @RefCell<~[@~str]>>;
+pub type header_map = HashMap<~str, @RefCell<Vec<@~str>>>;
 
 // the unused ty param is necessary so this gets monomorphized
 pub fn request<T>(req: &header_map) {
-  let _x = (*((**req.get(&~"METHOD")).clone()).get()[0u]).clone();
+  let _x = (**((**req.get(&"METHOD".to_owned())).clone()).borrow().clone().get(0)).clone();
 }