Remove impl_trait_in_bindings feature flag
This commit is contained in:
parent
75585b408f
commit
e8c04b4386
63 changed files with 388 additions and 741 deletions
|
@ -455,9 +455,6 @@ declare_features! (
|
|||
/// Allows non-builtin attributes in inner attribute position.
|
||||
(active, custom_inner_attributes, "1.30.0", Some(54726), None),
|
||||
|
||||
/// Allows `impl Trait` in bindings (`let`, `const`, `static`).
|
||||
(incomplete, impl_trait_in_bindings, "1.30.0", Some(63065), None),
|
||||
|
||||
/// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.
|
||||
(active, lint_reasons, "1.31.0", Some(54503), None),
|
||||
|
||||
|
|
|
@ -148,6 +148,10 @@ declare_features! (
|
|||
(removed, const_raw_ptr_to_usize_cast, "1.55.0", Some(51910), None,
|
||||
Some("at compile-time, pointers do not have an integer value, so these casts cannot be properly supported")),
|
||||
|
||||
/// Allows `impl Trait` in bindings (`let`, `const`, `static`).
|
||||
(removed, impl_trait_in_bindings, "1.55.0", Some(63065), None,
|
||||
Some("removed due to being incomplete and unstable")),
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// feature-group-end: removed features
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue