diff options
| author | Noa <coolreader18@gmail.com> | 2022-05-16 22:56:26 -0500 |
|---|---|---|
| committer | Noa <coolreader18@gmail.com> | 2022-05-16 22:56:26 -0500 |
| commit | e68e9775e2718ce0018f902d7cbc98a04923eb42 (patch) | |
| tree | b21f19c58a1c3854303dd1a7863ea9d1f7e99e46 | |
| parent | f1f721e64014863f41c1a386b04af04c2de25321 (diff) | |
| download | rust-e68e9775e2718ce0018f902d7cbc98a04923eb42.tar.gz rust-e68e9775e2718ce0018f902d7cbc98a04923eb42.zip | |
Add tracking issue for ExitCode::exit_process
| -rw-r--r-- | library/std/src/process.rs | 2 |
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()) } |
