about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2016-04-12 00:14:03 +0000
committerBrian Anderson <banderson@mozilla.com>2016-04-12 00:14:03 +0000
commit647e73dc0a6348210ea7c36c8404e07e518c7169 (patch)
tree88ba72410c3113552864bb7db014b18d53493247
parentb622c3e0856767d8e53cf141e2e0a7b6d72a198b (diff)
Fix beta branch
This test tests a message that is only displayed on nightly.
-rw-r--r--src/test/compile-fail/feature-gate-try-operator.rs2
1 files changed, 0 insertions, 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 184aa63b234..b05c7323962 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
 }