@@ -342,9 +342,6 @@ declare_features! (
342342 // Allows overlapping impls of marker traits
343343 ( active, overlapping_marker_traits, "1.18.0" , Some ( 29864 ) , None ) ,
344344
345- // Allows use of the :vis macro fragment specifier
346- ( active, macro_vis_matcher, "1.18.0" , Some ( 41022 ) , None ) ,
347-
348345 // rustc internal
349346 ( active, abi_thiscall, "1.19.0" , None , None ) ,
350347
@@ -648,6 +645,8 @@ declare_features! (
648645 ( accepted, repr_transparent, "1.28.0" , Some ( 43036 ) , None ) ,
649646 // Defining procedural macros in `proc-macro` crates
650647 ( accepted, proc_macro, "1.29.0" , Some ( 38356 ) , None ) ,
648+ // Allows use of the :vis macro fragment specifier
649+ ( accepted, macro_vis_matcher, "1.29.0" , Some ( 41022 ) , None ) ,
651650 // Allows importing and reexporting macros with `use`,
652651 // enables macro modularization in general.
653652 ( accepted, use_extern_macros, "1.30.0" , Some ( 35896 ) , None ) ,
@@ -1363,9 +1362,6 @@ pub const EXPLAIN_DEPR_CUSTOM_DERIVE: &'static str =
13631362pub const EXPLAIN_DERIVE_UNDERSCORE : & ' static str =
13641363 "attributes of the form `#[derive_*]` are reserved for the compiler" ;
13651364
1366- pub const EXPLAIN_VIS_MATCHER : & ' static str =
1367- ":vis fragment specifier is experimental and subject to change" ;
1368-
13691365pub const EXPLAIN_LITERAL_MATCHER : & ' static str =
13701366 ":literal fragment specifier is experimental and subject to change" ;
13711367
0 commit comments