1 #[warn(clippy::exit)]
2 
main()3 fn main() {
4     if true {
5         std::process::exit(2);
6     };
7     std::process::exit(1);
8 }
9