1
Fork 0

stabilize const_fn_unsize

This commit is contained in:
Ralf Jung 2021-05-08 16:28:29 +02:00
parent 21e1cd9b95
commit 65cd051b4a
14 changed files with 44 additions and 123 deletions

View file

@ -283,6 +283,8 @@ declare_features! (
(accepted, non_ascii_idents, "1.53.0", Some(55467), None),
/// Allows arbitrary expressions in key-value attributes at parse time.
(accepted, extended_key_value_attributes, "1.54.0", Some(78835), None),
/// Allows unsizing coercions in `const fn`.
(accepted, const_fn_unsize, "1.54.0", Some(64992), None),
// -------------------------------------------------------------------------
// feature-group-end: accepted features

View file

@ -644,9 +644,6 @@ declare_features! (
/// Allows trait bounds in `const fn`.
(active, const_fn_trait_bound, "1.53.0", Some(57563), None),
/// Allows unsizing coercions in `const fn`.
(active, const_fn_unsize, "1.53.0", Some(64992), None),
/// Allows `async {}` expressions in const contexts.
(active, const_async_blocks, "1.53.0", Some(85368), None),