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