mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 09:53:04 +03: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);
|
|
}
|