We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeff91d commit c75ed34Copy full SHA for c75ed34
src/libsyntax/feature_gate.rs
@@ -393,9 +393,6 @@ declare_features! (
393
// `extern` in paths
394
(active, extern_in_paths, "1.23.0", Some(55600), None),
395
396
- // Use `?` as the Kleene "at most one" operator
397
- (active, macro_at_most_once_rep, "1.25.0", Some(48075), None),
398
-
399
// Infer static outlives requirements; RFC 2093
400
(active, infer_static_outlives_requirements, "1.26.0", Some(54185), None),
401
@@ -689,6 +686,8 @@ declare_features! (
689
686
(accepted, extern_crate_item_prelude, "1.31.0", Some(55599), None),
690
687
// Allows use of the :literal macro fragment specifier (RFC 1576)
691
688
(accepted, macro_literal_matcher, "1.31.0", Some(35625), None),
+ // Use `?` as the Kleene "at most one" operator
+ (accepted, macro_at_most_once_rep, "1.32.0", Some(48075), None),
692
);
693
694
// If you change this, please modify src/doc/unstable-book as well. You must
0 commit comments