]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-pass/capture-clauses-unboxed-closures.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / run-pass / capture-clauses-unboxed-closures.rs
index 5e7d5aacb8d0d871d625a298e39e38d972d97f04..e8a9dc7b8f368b69d01f4e694dedc6dd3b39361d 100644 (file)
@@ -8,9 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
-#![feature(unboxed_closures)]
-
 fn each<'a,T,F:FnMut(&'a T)>(x: &'a [T], mut f: F) {
     for val in x {
         f(val)