mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
9 lines
117 B
Rust
9 lines
117 B
Rust
#![warn(clippy::exit)]
|
|
|
|
fn main() {
|
|
if true {
|
|
std::process::exit(2);
|
|
};
|
|
std::process::exit(1);
|
|
}
|