summary refs log tree commit diff
path: root/src/libsyntax/feature_gate.rs
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-11-24 16:12:16 -0600
committerMark Mansi <markm@cs.wisc.edu>2018-11-27 13:08:41 -0600
commita542e48871e040ea2db3b4fad5d88a83b6200855 (patch)
treeb5499ba9604d940477ba8f2b3559bea993cb3196 /src/libsyntax/feature_gate.rs
parentc75ed34732f67ce41faf84e22e4896cabab14a40 (diff)
downloadrust-a542e48871e040ea2db3b4fad5d88a83b6200855.tar.gz
rust-a542e48871e040ea2db3b4fad5d88a83b6200855.zip
remove feature gate
Diffstat (limited to 'src/libsyntax/feature_gate.rs')
-rw-r--r--src/libsyntax/feature_gate.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index cd503f25cfe..3bc34917051 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -1426,9 +1426,6 @@ pub const EXPLAIN_DERIVE_UNDERSCORE: &'static str =
 pub const EXPLAIN_UNSIZED_TUPLE_COERCION: &'static str =
     "unsized tuple coercion is not stable enough for use and is subject to change";
 
-pub const EXPLAIN_MACRO_AT_MOST_ONCE_REP: &'static str =
-    "using the `?` macro Kleene operator for \"at most one\" repetition is unstable";
-
 struct PostExpansionVisitor<'a> {
     context: &'a Context<'a>,
 }