about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2015-01-08 01:43:32 +0100
committerFelix S. Klock II <pnkfelix@pnkfx.org>2015-01-08 01:43:32 +0100
commitbfd6f958c465f729d2a0ad3dabf34ad04e6b3571 (patch)
tree2f02c2c8e4105a601e4d1f387e1e0c7ba973929e
parent5bd88a0ddedd7cac51d9fe78655a17e74ab125e5 (diff)
downloadrust-bfd6f958c465f729d2a0ad3dabf34ad04e6b3571.tar.gz
rust-bfd6f958c465f729d2a0ad3dabf34ad04e6b3571.zip
allow box_syntax and unknown features in compiletest driver.
-rw-r--r--src/compiletest/compiletest.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiletest/compiletest.rs b/src/compiletest/compiletest.rs
index e2420b0a220..9a5665e6839 100644
--- a/src/compiletest/compiletest.rs
+++ b/src/compiletest/compiletest.rs
@@ -9,7 +9,9 @@
 // except according to those terms.
 
 #![crate_type = "bin"]
+#![allow(unknown_features)]
 #![feature(slicing_syntax, unboxed_closures)]
+#![feature(box_syntax)]
 
 #![deny(warnings)]