diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-04-01 10:56:51 +0900 |
|---|---|---|
| committer | Yuki Okushi <jtitor@2k36.org> | 2021-04-01 10:56:51 +0900 |
| commit | fe9c4fbb9e8e280ba17faf7a524f84c0c9e2774b (patch) | |
| tree | e2be977436b496c4ccf7a4c0a111fb1651c5aae3 | |
| parent | a5029ac0ab372aec515db2e718da6d7787f3d122 (diff) | |
| download | rust-fe9c4fbb9e8e280ba17faf7a524f84c0c9e2774b.tar.gz rust-fe9c4fbb9e8e280ba17faf7a524f84c0c9e2774b.zip | |
Fix the `unsafe_block_in_unsafe_fn`s stabilized version
| -rw-r--r-- | compiler/rustc_feature/src/accepted.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs index ce9f711b27e..f006351647e 100644 --- a/compiler/rustc_feature/src/accepted.rs +++ b/compiler/rustc_feature/src/accepted.rs @@ -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), |
