]> 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 48af01c6f55ca0d0ef12d3a5f39012694ab9c386..c961f59f98148f1c2567b18ea164a3f7fd0618e9 100644 (file)
@@ -9,13 +9,13 @@
 // except according to those terms.
 
 fn foo(s: &~str) -> bool {
-    match s {
-        &~"kitty" => true,
+    match s.as_slice() {
+        "kitty" => true,
         _ => false
     }
 }
 
 pub fn main() {
-    assert foo(&~"kitty");
-    assert !foo(&~"gata");
+    assert!(foo(&"kitty".to_owned()));
+    assert!(!foo(&"gata".to_owned()));
 }