about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/exit4.rs
blob: 821a26fd78b056a49c25142d01381e5ede740047 (plain)
1
2
3
4
5
6
7
8
//@ check-pass
//@compile-flags: --test

#![warn(clippy::exit)]

fn main() {
    std::process::exit(0)
}