]> 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 4b81654a1d0a2195f54e43b12161ce2cbb0d07e2..d017a0dbf9a3bb65d5e4a262efb5ac3015f4b506 100644 (file)
@@ -8,14 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-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);