@@ -665,6 +665,8 @@ declare_features! (
665
665
( accepted, self_struct_ctor, "1.32.0" , Some ( 51994 ) , None ) ,
666
666
// `Self` in type definitions (RFC 2300)
667
667
( accepted, self_in_typedefs, "1.32.0" , Some ( 49303 ) , None ) ,
668
+ // Allows `use x::y;` to search `x` in the current scope.
669
+ ( accepted, uniform_paths, "1.32.0" , Some ( 53130 ) , None ) ,
668
670
// Integer match exhaustiveness checking (RFC 2591)
669
671
( accepted, exhaustive_integer_patterns, "1.33.0" , Some ( 50907 ) , None ) ,
670
672
// `use path as _;` and `extern crate c as _;`
@@ -683,8 +685,6 @@ declare_features! (
683
685
( accepted, cfg_attr_multi, "1.33.0" , Some ( 54881 ) , None ) ,
684
686
// Top level or-patterns (`p | q`) in `if let` and `while let`.
685
687
( accepted, if_while_or_patterns, "1.33.0" , Some ( 48215 ) , None ) ,
686
- // Allows `use x::y;` to search `x` in the current scope.
687
- ( accepted, uniform_paths, "1.32.0" , Some ( 53130 ) , None ) ,
688
688
// Allows `cfg(target_vendor = "...")`.
689
689
( accepted, cfg_target_vendor, "1.33.0" , Some ( 29718 ) , None ) ,
690
690
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
0 commit comments