Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
exit3_compile_flag_test.rs
blob: f8131ead2da30e4df7c663e5194ab4a833f4b2ff [
file
]
//@ check-pass
//@compile-flags: --test
#![
warn
(
clippy
::
exit
)]
fn
main
()
{
if
true
{
std
::
process
::
exit
(
2
);
};
std
::
process
::
exit
(
1
);
}