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