diff options
| author | Nick Cameron <ncameron@mozilla.com> | 2016-10-06 11:36:36 +1300 |
|---|---|---|
| committer | Nick Cameron <ncameron@mozilla.com> | 2016-10-12 08:40:22 +1300 |
| commit | 9bc6d2609233cece91803a8163dc3ba5579dfde8 (patch) | |
| tree | c02ea412e8c99997b845f8babd2f9e828ed26277 /src/libtest | |
| parent | 9d4d0da7af77858f268a66ff144134945c880560 (diff) | |
| download | rust-9bc6d2609233cece91803a8163dc3ba5579dfde8.tar.gz rust-9bc6d2609233cece91803a8163dc3ba5579dfde8.zip | |
Stabilise `?`
cc [`?` tracking issue](https://github.com/rust-lang/rust/issues/31436)
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index bb42351d3b7..625666e641c 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -38,7 +38,7 @@ #![feature(rustc_private)] #![feature(set_stdio)] #![feature(staged_api)] -#![feature(question_mark)] +#![cfg_attr(stage0, feature(question_mark))] #![feature(panic_unwind)] extern crate getopts; |
