]> 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 3e76d9e4c6c71536b857b5fb38d3dd356c9c4411..5da5653f26e644ad19a2979d9b34043460feab3c 100644 (file)
@@ -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()).borrow().clone().get(0)).clone();
+  let _x = (**((**req.get(&"METHOD".to_owned())).clone()).borrow().clone().get(0)).clone();
 }