mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
22 lines
748 B
Text
22 lines
748 B
Text
error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
|
|
--> $DIR/mut_reference.rs:17:34
|
|
|
|
|
LL | takes_an_immutable_reference(&mut 42);
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D clippy::unnecessary-mut-passed` implied by `-D warnings`
|
|
|
|
error: The function/method `as_ptr` doesn't need a mutable reference
|
|
--> $DIR/mut_reference.rs:19:12
|
|
|
|
|
LL | as_ptr(&mut 42);
|
|
| ^^^^^^^
|
|
|
|
error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
|
|
--> $DIR/mut_reference.rs:23:44
|
|
|
|
|
LL | my_struct.takes_an_immutable_reference(&mut 42);
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|