Remove const_in_array_rep_expr
This commit is contained in:
parent
fe39653116
commit
6946534d84
28 changed files with 31 additions and 199 deletions
|
@ -485,9 +485,6 @@ declare_features! (
|
|||
/// Allows `async || body` closures.
|
||||
(active, async_closure, "1.37.0", Some(62290), None),
|
||||
|
||||
/// Allows `[x; N]` where `x` is a constant (RFC 2203).
|
||||
(active, const_in_array_repeat_expressions, "1.37.0", Some(49147), None),
|
||||
|
||||
/// Allows `impl Trait` to be used inside type aliases (RFC 2515).
|
||||
(active, type_alias_impl_trait, "1.38.0", Some(63063), None),
|
||||
|
||||
|
|
|
@ -97,6 +97,9 @@ declare_features! (
|
|||
(removed, extern_in_paths, "1.33.0", Some(55600), None,
|
||||
Some("subsumed by `::foo::bar` paths")),
|
||||
(removed, quote, "1.33.0", Some(29601), None, None),
|
||||
/// Allows `[x; N]` where `x` is a constant (RFC 2203).
|
||||
(removed, const_in_array_repeat_expressions, "1.37.0", Some(49147), None,
|
||||
Some("removed due to causing promotable bugs")),
|
||||
/// Allows using `#[unsafe_destructor_blind_to_params]` (RFC 1238).
|
||||
(removed, dropck_parametricity, "1.38.0", Some(28498), None, None),
|
||||
(removed, await_macro, "1.38.0", Some(50547), None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue