about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/exit2.rs
blob: 2be8a84b6d4bb98069736d6825d50c24a281c1ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(clippy::exit)]

fn also_not_main() {
    std::process::exit(3);
    //~^ exit
}

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