Add tracking issue for ExitCode::exit_process

This commit is contained in:
Noa 2022-05-16 22:56:26 -05:00
parent f1f721e640
commit e68e9775e2
No known key found for this signature in database
GPG Key ID: 7F9F7DB1768C59CF

View File

@ -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())
}