]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/option-ext.rs
Replace all ~"" with "".to_owned()
[rust.git] / src / test / run-pass / option-ext.rs
index 3d9786b44b065fc133ab1614d908b1a0c6e3d700..967ca621948a2edd240dcdfe3f207fa09a3b92a5 100644 (file)
@@ -1,8 +1,18 @@
-fn main() {
-    let thing = ~"{{ f }}";
-    let f = str::find_str(thing, ~"{{");
+// 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.
+
+pub fn main() {
+    let thing = "{{ f }}".to_owned();
+    let f = thing.find_str("{{");
 
     if f.is_none() {
-        io::println(~"None!");
+        println!("None!");
     }
 }