about summary refs log tree commit diff
path: root/compiler/rustc_lint
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2024-10-14 14:46:44 -0700
committerJosh Stone <jistone@redhat.com>2024-10-15 20:30:23 -0700
commitacb09bf741ba439356e824dd10a07054c6656fb6 (patch)
tree376a37a33d0c9d2e5817d6c4617e8f91cb320b39 /compiler/rustc_lint
parent6134f9f636422abeda9fbc1563f6aa9a5b0b3fdf (diff)
downloadrust-acb09bf741ba439356e824dd10a07054c6656fb6.tar.gz
rust-acb09bf741ba439356e824dd10a07054c6656fb6.zip
update bootstrap configs
Diffstat (limited to 'compiler/rustc_lint')
-rw-r--r--compiler/rustc_lint/src/if_let_rescope.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint/src/if_let_rescope.rs b/compiler/rustc_lint/src/if_let_rescope.rs
index cdd0e80c458..58fd11fcc29 100644
--- a/compiler/rustc_lint/src/if_let_rescope.rs
+++ b/compiler/rustc_lint/src/if_let_rescope.rs
@@ -24,7 +24,7 @@ declare_lint! {
     /// ### Example
     ///
     /// ```rust,edition2021
-    /// #![cfg_attr(not(bootstrap), feature(if_let_rescope))] // Simplify this in bootstrap bump.
+    /// #![feature(if_let_rescope)]
     /// #![warn(if_let_rescope)]
     /// #![allow(unused_variables)]
     ///