Skip to content

Commit 3175799

Browse files
committed
Add tracking issue number
1 parent 852bd86 commit 3175799

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/core/src/ops/control_flow.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ impl<B, C> ControlFlow<B, C> {
184184
/// ```
185185
#[inline]
186186
#[stable(feature = "control_flow_enum", since = "1.83.0")]
187-
#[rustc_const_unstable(feature = "const_control_flow", issue = "none")]
187+
#[rustc_const_unstable(feature = "const_control_flow", issue = "148739")]
188188
pub const fn break_value(self) -> Option<B>
189189
where
190190
Self: [const] Destruct,
@@ -273,7 +273,7 @@ impl<B, C> ControlFlow<B, C> {
273273
/// to the break value in case it exists.
274274
#[inline]
275275
#[stable(feature = "control_flow_enum", since = "1.83.0")]
276-
#[rustc_const_unstable(feature = "const_control_flow", issue = "none")]
276+
#[rustc_const_unstable(feature = "const_control_flow", issue = "148739")]
277277
pub const fn map_break<T, F>(self, f: F) -> ControlFlow<T, C>
278278
where
279279
F: [const] FnOnce(B) -> T + [const] Destruct,
@@ -297,7 +297,7 @@ impl<B, C> ControlFlow<B, C> {
297297
/// ```
298298
#[inline]
299299
#[stable(feature = "control_flow_enum", since = "1.83.0")]
300-
#[rustc_const_unstable(feature = "const_control_flow", issue = "none")]
300+
#[rustc_const_unstable(feature = "const_control_flow", issue = "148739")]
301301
pub const fn continue_value(self) -> Option<C>
302302
where
303303
Self: [const] Destruct,
@@ -385,7 +385,7 @@ impl<B, C> ControlFlow<B, C> {
385385
/// to the continue value in case it exists.
386386
#[inline]
387387
#[stable(feature = "control_flow_enum", since = "1.83.0")]
388-
#[rustc_const_unstable(feature = "const_control_flow", issue = "none")]
388+
#[rustc_const_unstable(feature = "const_control_flow", issue = "148739")]
389389
pub const fn map_continue<T, F>(self, f: F) -> ControlFlow<B, T>
390390
where
391391
F: [const] FnOnce(C) -> T + [const] Destruct,

0 commit comments

Comments
 (0)