From e68e9775e2718ce0018f902d7cbc98a04923eb42 Mon Sep 17 00:00:00 2001 From: Noa Date: Mon, 16 May 2022 22:56:26 -0500 Subject: [PATCH] Add tracking issue for ExitCode::exit_process --- library/std/src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 6c5c08d0bea..e253f46406f 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -1764,7 +1764,7 @@ impl ExitCode { /// code.exit_process() /// } /// ``` - #[unstable(feature = "exitcode_exit_method", issue = "none")] + #[unstable(feature = "exitcode_exit_method", issue = "97100")] pub fn exit_process(self) -> ! { exit(self.to_i32()) }