Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
exit2.rs
blob: 2be8a84b6d4bb98069736d6825d50c24a281c1ab [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
exit
)]
fn
also_not_main
()
{
std
::
process
::
exit
(
3
);
//~^ exit
}
fn
main
()
{
if
true
{
std
::
process
::
exit
(
2
);
};
also_not_main
();
std
::
process
::
exit
(
1
);
}