From 647e73dc0a6348210ea7c36c8404e07e518c7169 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 12 Apr 2016 00:14:03 +0000 Subject: [PATCH] Fix beta branch This test tests a message that is only displayed on nightly. --- src/test/compile-fail/feature-gate-try-operator.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/compile-fail/feature-gate-try-operator.rs b/src/test/compile-fail/feature-gate-try-operator.rs index 184aa63b23426..b05c7323962c5 100644 --- a/src/test/compile-fail/feature-gate-try-operator.rs +++ b/src/test/compile-fail/feature-gate-try-operator.rs @@ -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 }