diff options
Diffstat (limited to 'tests/ui/unboxed-closures/unboxed-closures-boxed.rs')
-rw-r--r-- | tests/ui/unboxed-closures/unboxed-closures-boxed.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ui/unboxed-closures/unboxed-closures-boxed.rs b/tests/ui/unboxed-closures/unboxed-closures-boxed.rs index 3f550fd04..53f0523da 100644 --- a/tests/ui/unboxed-closures/unboxed-closures-boxed.rs +++ b/tests/ui/unboxed-closures/unboxed-closures-boxed.rs @@ -1,6 +1,5 @@ // run-pass -use std::ops::FnMut; fn make_adder(x: i32) -> Box<dyn FnMut(i32)->i32+'static> { Box::new(move |y: i32| -> i32 { x + y }) as |