1
Fork 0

Remove impl_trait_in_bindings feature flag

This commit is contained in:
Santiago Pastorino 2021-07-16 10:06:26 -03:00
parent 75585b408f
commit e8c04b4386
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF
63 changed files with 388 additions and 741 deletions

View file

@ -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),

View file

@ -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
// -------------------------------------------------------------------------