]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/borrowed-ptr-pattern-2.rs
Replace all ~"" with "".to_owned()
[rust.git] / src / test / run-pass / borrowed-ptr-pattern-2.rs
index fc14b60c532b8943fe8fc5eb55ce53e2c1861f07..c961f59f98148f1c2567b18ea164a3f7fd0618e9 100644 (file)
@@ -16,6 +16,6 @@ fn foo(s: &~str) -> bool {
 }
 
 pub fn main() {
-    assert!(foo(&~"kitty"));
-    assert!(!foo(&~"gata"));
+    assert!(foo(&"kitty".to_owned()));
+    assert!(!foo(&"gata".to_owned()));
 }