blob: be8752cc7d8e280a6fe4a5bfbb5ea08a430655da [file] [log] [blame] [edit]
#![warn(clippy::exit)]
fn not_main() {
if true {
std::process::exit(4);
//~^ exit
}
}
fn main() {
if true {
std::process::exit(2);
};
not_main();
std::process::exit(1);
}