Sign in
rust
/
rust-clippy
/
4c58860cbfe51049d48f4f31f76dcc18b39cfe98
/
.
/
tests
/
ui
/
toplevel_ref_arg_non_rustfix.rs
blob: 42cac2ba4de255ef3a2a96602458577f02ee9342 [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
toplevel_ref_arg
)]
#![
allow
(
unused
)]
fn
the_answer
(
ref
mut
x
:
u8
)
{
*
x
=
42
;
}
fn
main
()
{
let
mut
x
=
0
;
the_answer
(
x
);
}