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