From 3175799208fb595aae960cbbc7250d10f614d6eb Mon Sep 17 00:00:00 2001 From: nxsaken Date: Sun, 9 Nov 2025 13:33:47 +0400 Subject: [PATCH] Add tracking issue number --- library/core/src/ops/control_flow.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/core/src/ops/control_flow.rs b/library/core/src/ops/control_flow.rs index 8eff1633c3b4..bc497db35202 100644 --- a/library/core/src/ops/control_flow.rs +++ b/library/core/src/ops/control_flow.rs @@ -184,7 +184,7 @@ impl ControlFlow { /// ``` #[inline] #[stable(feature = "control_flow_enum", since = "1.83.0")] - #[rustc_const_unstable(feature = "const_control_flow", issue = "none")] + #[rustc_const_unstable(feature = "const_control_flow", issue = "148739")] pub const fn break_value(self) -> Option where Self: [const] Destruct, @@ -273,7 +273,7 @@ impl ControlFlow { /// to the break value in case it exists. #[inline] #[stable(feature = "control_flow_enum", since = "1.83.0")] - #[rustc_const_unstable(feature = "const_control_flow", issue = "none")] + #[rustc_const_unstable(feature = "const_control_flow", issue = "148739")] pub const fn map_break(self, f: F) -> ControlFlow where F: [const] FnOnce(B) -> T + [const] Destruct, @@ -297,7 +297,7 @@ impl ControlFlow { /// ``` #[inline] #[stable(feature = "control_flow_enum", since = "1.83.0")] - #[rustc_const_unstable(feature = "const_control_flow", issue = "none")] + #[rustc_const_unstable(feature = "const_control_flow", issue = "148739")] pub const fn continue_value(self) -> Option where Self: [const] Destruct, @@ -385,7 +385,7 @@ impl ControlFlow { /// to the continue value in case it exists. #[inline] #[stable(feature = "control_flow_enum", since = "1.83.0")] - #[rustc_const_unstable(feature = "const_control_flow", issue = "none")] + #[rustc_const_unstable(feature = "const_control_flow", issue = "148739")] pub const fn map_continue(self, f: F) -> ControlFlow where F: [const] FnOnce(C) -> T + [const] Destruct,