]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/block-arg.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / block-arg.rs
index 59786e993f2630f1171920114c54292124568be2..d017a0dbf9a3bb65d5e4a262efb5ac3015f4b506 100644 (file)
@@ -8,23 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-extern crate debug;
-
-fn inty(fun: proc(int) -> int) -> int {
-    fun(100)
-}
-
-fn booly(fun: proc(bool) -> bool) -> bool {
-    fun(true)
-}
-
 // Check usage and precedence of block arguments in expressions:
 pub fn main() {
     let v = vec!(-1.0f64, 0.0, 1.0, 2.0, 3.0);
 
     // Statement form does not require parentheses:
     for i in v.iter() {
-        println!("{:?}", *i);
+        println!("{}", *i);
     }
 
 }