diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-01-08 01:43:32 +0100 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-01-08 01:43:32 +0100 |
| commit | bfd6f958c465f729d2a0ad3dabf34ad04e6b3571 (patch) | |
| tree | 2f02c2c8e4105a601e4d1f387e1e0c7ba973929e | |
| parent | 5bd88a0ddedd7cac51d9fe78655a17e74ab125e5 (diff) | |
| download | rust-bfd6f958c465f729d2a0ad3dabf34ad04e6b3571.tar.gz rust-bfd6f958c465f729d2a0ad3dabf34ad04e6b3571.zip | |
allow box_syntax and unknown features in compiletest driver.
| -rw-r--r-- | src/compiletest/compiletest.rs | 2 |
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)] |
