mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-12 14:22:45 +00:00
6b6253016f
rustc now (https://github.com/rust-lang/rust/issues/33525) does not report an error count anymore, because it was not correct in many cases.
29 lines
958 B
Text
29 lines
958 B
Text
error: The function/method "takes_an_immutable_reference" doesn't need a mutable reference
|
|
--> mut_reference.rs:22:34
|
|
|
|
|
22 | takes_an_immutable_reference(&mut 42);
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D unnecessary-mut-passed` implied by `-D warnings`
|
|
|
|
error: The function/method "as_ptr" doesn't need a mutable reference
|
|
--> mut_reference.rs:24:12
|
|
|
|
|
24 | as_ptr(&mut 42);
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D unnecessary-mut-passed` implied by `-D warnings`
|
|
|
|
error: The function/method "takes_an_immutable_reference" doesn't need a mutable reference
|
|
--> mut_reference.rs:28:44
|
|
|
|
|
28 | my_struct.takes_an_immutable_reference(&mut 42);
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D unnecessary-mut-passed` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|