]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-pass/unboxed-closures-generic.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / run-pass / unboxed-closures-generic.rs
index 47936ba938284264e5900195721f6a85873d6d5a..01c81ef98d505c84ad5aefa701b8501afd87b8f1 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(unboxed_closures)]
-
 use std::ops::FnMut;
 
 fn call_it<F:FnMut(i32,i32)->i32>(y: i32, mut f: F) -> i32 {