Skip to content

Commit

Permalink
Auto merge of rust-lang#83736 - JohnTitor:fix-unsafe_block_in_unsafe_…
Browse files Browse the repository at this point in the history
…fn-stabilized-version, r=jyn514

Fix the `unsafe_block_in_unsafe_fn`s stabilized version

Fixes rust-lang#83735
  • Loading branch information
bors committed Apr 1, 2021
2 parents cbd6ec7 + fe9c4fb commit 49e1ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_feature/src/accepted.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ declare_features! (
/// The smallest useful subset of `const_generics`.
(accepted, min_const_generics, "1.51.0", Some(74878), None),
/// The `unsafe_op_in_unsafe_fn` lint (allowed by default): no longer treat an unsafe function as an unsafe block.
(accepted, unsafe_block_in_unsafe_fn, "1.51.0", Some(71668), None),
(accepted, unsafe_block_in_unsafe_fn, "1.52.0", Some(71668), None),
/// Allows the use of or-patterns (e.g., `0 | 1`).
(accepted, or_patterns, "1.53.0", Some(54883), None),

Expand Down

0 comments on commit 49e1ec0

Please sign in to comment.