mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 07:41:58 +00:00
11 lines
133 B
Rust
11 lines
133 B
Rust
//@ check-pass
|
|
|
|
#![warn(clippy::exit)]
|
|
|
|
fn main() {
|
|
if true {
|
|
std::process::exit(2);
|
|
};
|
|
std::process::exit(1);
|
|
}
|