]> 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 e7e0bf1bd60fadc3496bab69ecd5d21218521e92..5da5653f26e644ad19a2979d9b34043460feab3c 100644 (file)
@@ -8,9 +8,9 @@
 // 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 crate collections;
 
@@ -21,5 +21,5 @@
 
 // the unused ty param is necessary so this gets monomorphized
 pub fn request<T>(req: &header_map) {
-  let _x = (**((**req.get(&~"METHOD")).clone()).get().get(0)).clone();
+  let _x = (**((**req.get(&"METHOD".to_owned())).clone()).borrow().clone().get(0)).clone();
 }