about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/exit3.rs
blob: a8af1b225788cc81b6f826d83c9282e110d7eb7e (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass

#![warn(clippy::exit)]

fn main() {
    if true {
        std::process::exit(2);
    };
    std::process::exit(1);
}