Sign in
android
/
toolchain
/
rustc
/
bcfff4e50dda5837a362e7ef749affe38767d9f2
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
exit3.rs
blob: 9dc0e1015a4f75894763e3c76e434fc7331e4f66 [
file
]
#[
warn
(
clippy
::
exit
)]
fn
main
()
{
if
true
{
std
::
process
::
exit
(
2
);
};
std
::
process
::
exit
(
1
);
}