Rollup merge of #32894 - brson:fixbeta, r=alexcrichton

Fix beta branch

This test tests a message that is only displayed on nightly.

Still testing this locally, but I suspect it's correct. r? @alexcrichton
This commit is contained in:
Steve Klabnik 2016-04-14 14:49:10 -04:00
commit e548880524

View File

@ -14,7 +14,5 @@ macro_rules! id {
fn main() {
id!(x?); //~ error: the `?` operator is not stable (see issue #31436)
//~^ help: add #![feature(question_mark)] to the crate attributes to enable
y?; //~ error: the `?` operator is not stable (see issue #31436)
//~^ help: add #![feature(question_mark)] to the crate attributes to enable
}