about summary refs log tree commit diff
path: root/src/librustc_driver
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-07 17:42:47 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-07 17:42:47 -0800
commit373cbab5b08d6630da58f28d2166c19afc327fa6 (patch)
tree860d19575778256a9345ce33d5eeef6b54f91300 /src/librustc_driver
parentd11bfba71bb71e05ab93e1576a07a48269b13021 (diff)
parentae4bcd41e8014b6057fe0a328c87f32f917396ba (diff)
downloadrust-373cbab5b08d6630da58f28d2166c19afc327fa6.tar.gz
rust-373cbab5b08d6630da58f28d2166c19afc327fa6.zip
rollup merge of #20723: pnkfelix/feature-gate-box-syntax
Conflicts:
	src/compiletest/compiletest.rs
	src/libcollections/lib.rs
	src/libserialize/lib.rs
	src/libsyntax/feature_gate.rs
Diffstat (limited to 'src/librustc_driver')
-rw-r--r--src/librustc_driver/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_driver/lib.rs b/src/librustc_driver/lib.rs
index f3a934857ec..27e1eaacdfd 100644
--- a/src/librustc_driver/lib.rs
+++ b/src/librustc_driver/lib.rs
@@ -23,8 +23,10 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://doc.rust-lang.org/nightly/")]
 
+#![allow(unknown_features)]
 #![feature(quote)]
 #![feature(slicing_syntax, unsafe_destructor)]
+#![feature(box_syntax)]
 #![feature(rustc_diagnostic_macros)]
 
 extern crate arena;