Skip to content

Commit 8a57831

Browse files
committed
Auto merge of #58071 - Centril:adjust-stabilization-order, r=varkor
Fix stabilization order of `uniform_paths` The `accepted` list is not correctly sorted; this PR fixes that. r? @alexreg @bors rollup
2 parents 3e58dab + 7754eb0 commit 8a57831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libsyntax/feature_gate.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,8 @@ declare_features! (
665665
(accepted, self_struct_ctor, "1.32.0", Some(51994), None),
666666
// `Self` in type definitions (RFC 2300)
667667
(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),
668670
// Integer match exhaustiveness checking (RFC 2591)
669671
(accepted, exhaustive_integer_patterns, "1.33.0", Some(50907), None),
670672
// `use path as _;` and `extern crate c as _;`
@@ -683,8 +685,6 @@ declare_features! (
683685
(accepted, cfg_attr_multi, "1.33.0", Some(54881), None),
684686
// Top level or-patterns (`p | q`) in `if let` and `while let`.
685687
(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),
688688
// Allows `cfg(target_vendor = "...")`.
689689
(accepted, cfg_target_vendor, "1.33.0", Some(29718), None),
690690
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.

0 commit comments

Comments
 (0)