about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-05-18 08:41:17 +0200
committerGitHub <noreply@github.com>2022-05-18 08:41:17 +0200
commit2d95c6acab4a8988ede533e52710d960d11ae038 (patch)
treefa0036132a7639a5e004f6ab9939a3b0134b969f
parent927a40b1a79c042aec7f1b86f3964afebd574852 (diff)
parente68e9775e2718ce0018f902d7cbc98a04923eb42 (diff)
downloadrust-2d95c6acab4a8988ede533e52710d960d11ae038.tar.gz
rust-2d95c6acab4a8988ede533e52710d960d11ae038.zip
Rollup merge of #97101 - coolreader18:exitcode-method-issue, r=yaahc
Add tracking issue for ExitCode::exit_process

r? `@yaahc`
-rw-r--r--library/std/src/process.rs2
1 files changed, 1 insertions, 1 deletions
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())
     }