]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-pass/expr-block-unique.rs
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / run-pass / expr-block-unique.rs
index eb24d70de90f6c5d6fa14c503bb70723f941f90d..2426ee5966c9f5961bd96648c70d11b294cb9efb 100644 (file)
@@ -8,9 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
-
-#![allow(unknown_features)]
 #![feature(box_syntax)]
 
 pub fn main() { let x: Box<_> = { box 100 }; assert_eq!(*x, 100); }