]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/match-join.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / match-join.rs
index d6654db854f81240f111c9c398e59ba62fe0abec..a9039885296b0020200ff23ade39b4753ebbd31d 100644 (file)
@@ -10,7 +10,7 @@
 
 fn foo<T>(y: Option<T>) {
     let mut x: int;
-    let mut rs: ~[int] = ~[];
+    let mut rs: Vec<int> = Vec::new();
     /* tests that x doesn't get put in the precondition for the
        entire if expression */
 
@@ -25,4 +25,4 @@ fn foo<T>(y: Option<T>) {
     return;
 }
 
-pub fn main() { info!("hello"); foo::<int>(Some::<int>(5)); }
+pub fn main() { println!("hello"); foo::<int>(Some::<int>(5)); }