Skip to content

Commit 5ffd1a6

Browse files
committed
Rollup merge of rust-lang#57052 - Centril:fix-eip-stable-version, r=varkor
Fix stabilization version numbers (exhaustive_integer_patterns + macro_literal_matcher) + `exhaustive_integer_patterns` slipped 1.32; merged in 1.33 -- rust-lang#56362 + `macro_literal_matcher` isn't stable on current stable (1.31) but is on beta (1.32). r? @varkor
2 parents bba398e + 0203a1c commit 5ffd1a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/libsyntax/feature_gate.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -681,15 +681,15 @@ declare_features! (
681681
// `extern crate foo as bar;` puts `bar` into extern prelude.
682682
(accepted, extern_crate_item_prelude, "1.31.0", Some(55599), None),
683683
// Allows use of the `:literal` macro fragment specifier (RFC 1576).
684-
(accepted, macro_literal_matcher, "1.31.0", Some(35625), None),
685-
// Integer match exhaustiveness checking (RFC 2591)
686-
(accepted, exhaustive_integer_patterns, "1.32.0", Some(50907), None),
684+
(accepted, macro_literal_matcher, "1.32.0", Some(35625), None),
687685
// Use `?` as the Kleene "at most one" operator.
688686
(accepted, macro_at_most_once_rep, "1.32.0", Some(48075), None),
689687
// `Self` struct constructor (RFC 2302)
690688
(accepted, self_struct_ctor, "1.32.0", Some(51994), None),
691689
// `Self` in type definitions (RFC 2300)
692690
(accepted, self_in_typedefs, "1.32.0", Some(49303), None),
691+
// Integer match exhaustiveness checking (RFC 2591)
692+
(accepted, exhaustive_integer_patterns, "1.33.0", Some(50907), None),
693693
// `use path as _;` and `extern crate c as _;`
694694
(accepted, underscore_imports, "1.33.0", Some(48216), None),
695695
// Allows `#[repr(packed(N))]` attribute on structs.

0 commit comments

Comments
 (0)