about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-02-08 22:00:51 -0600
committerMark Mansi <markm@cs.wisc.edu>2018-02-08 22:00:51 -0600
commit1bd086283b0fab7ecda60f451df870aa4e21d00b (patch)
tree18f5c43de7fcc802921a4558831faeeec5d6851f
parent4cf3b65714726d2c3022717e108943590807b4a2 (diff)
downloadrust-1bd086283b0fab7ecda60f451df870aa4e21d00b.tar.gz
rust-1bd086283b0fab7ecda60f451df870aa4e21d00b.zip
Update feature gate test
-rw-r--r--src/test/ui/feature-gate-macro_at_most_once_rep.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/feature-gate-macro_at_most_once_rep.rs b/src/test/ui/feature-gate-macro_at_most_once_rep.rs
index 19f5aca5730..27257eec277 100644
--- a/src/test/ui/feature-gate-macro_at_most_once_rep.rs
+++ b/src/test/ui/feature-gate-macro_at_most_once_rep.rs
@@ -12,7 +12,7 @@
 // gate is not used.
 
 macro_rules! m { ($(a)?) => {} }
-//~^ ERROR Using the `?` macro Kleene operator for "at most one" repetition is unstable
+//~^ ERROR Using the `?` macro Kleene operator for "at most one" repetition is unstable (see issue #48075)
 
 fn main() {
     m!();