mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
11 lines
327 B
Text
11 lines
327 B
Text
|
error: `ref` directly on a function argument is ignored. Consider using a reference type instead.
|
||
|
--> $DIR/toplevel_ref_arg_non_rustfix.rs:4:15
|
||
|
|
|
||
|
LL | fn the_answer(ref mut x: u8) {
|
||
|
| ^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D clippy::toplevel-ref-arg` implied by `-D warnings`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|