diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2018-12-21 21:27:04 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2018-12-21 21:27:04 +0100 |
| commit | 0203a1cc3139d053ea40d8b89c70ea9c361c837a (patch) | |
| tree | 2b999c52e67cbc3402cb776cb835924ad0f02e89 /src/libsyntax | |
| parent | 34dc5c8980e428a306f9af09b9e3002e0e9f443e (diff) | |
| download | rust-0203a1cc3139d053ea40d8b89c70ea9c361c837a.tar.gz rust-0203a1cc3139d053ea40d8b89c70ea9c361c837a.zip | |
exhaustive_integer_patterns slipped 1.32; stabilized in 1.33.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 3fe827a2a08..ddb1355ee56 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -685,14 +685,14 @@ declare_features! ( (accepted, extern_crate_item_prelude, "1.31.0", Some(55599), None), // Allows use of the `:literal` macro fragment specifier (RFC 1576). (accepted, macro_literal_matcher, "1.32.0", Some(35625), None), - // Integer match exhaustiveness checking (RFC 2591) - (accepted, exhaustive_integer_patterns, "1.32.0", Some(50907), None), // Use `?` as the Kleene "at most one" operator. (accepted, macro_at_most_once_rep, "1.32.0", Some(48075), None), // `Self` struct constructor (RFC 2302) (accepted, self_struct_ctor, "1.32.0", Some(51994), None), // `Self` in type definitions (RFC 2300) (accepted, self_in_typedefs, "1.32.0", Some(49303), None), + // Integer match exhaustiveness checking (RFC 2591) + (accepted, exhaustive_integer_patterns, "1.33.0", Some(50907), None), // `use path as _;` and `extern crate c as _;` (accepted, underscore_imports, "1.33.0", Some(48216), None), ); |
