]> 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 1cfe037c729e73e9852c7344040584810cbaa2b1..c961f59f98148f1c2567b18ea164a3f7fd0618e9 100644 (file)
@@ -1,11 +1,21 @@
+// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
 fn foo(s: &~str) -> bool {
-    match s {
-        &~"kitty" => true,
+    match s.as_slice() {
+        "kitty" => true,
         _ => false
     }
 }
 
-fn main() {
-    assert foo(&~"kitty");
-    assert !foo(&~"gata");
+pub fn main() {
+    assert!(foo(&"kitty".to_owned()));
+    assert!(!foo(&"gata".to_owned()));
 }