]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-pass/assignability-trait.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / run-pass / assignability-trait.rs
index 0ee460052c73f73865ae76a86b205dda9d794abc..c364240f4ad69f5ddf7061ecc6bbef98d2a3f48e 100644 (file)
@@ -12,9 +12,6 @@
 // making method calls, but only if there aren't any matches without
 // it.
 
-
-#![feature(unboxed_closures)]
-
 trait iterable<A> {
     fn iterate<F>(&self, blk: F) -> bool where F: FnMut(&A) -> bool;
 }