2020-08-28 14:10:16 +00:00
|
|
|
error: the function `takes_an_immutable_reference` doesn't need a mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/mut_reference.rs:30:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | takes_an_immutable_reference(&mut 42);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::unnecessary-mut-passed` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_mut_passed)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: the function `as_ptr` doesn't need a mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/mut_reference.rs:34:12
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | as_ptr(&mut 42);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: the method `takes_an_immutable_reference` doesn't need a mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/mut_reference.rs:39:44
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | my_struct.takes_an_immutable_reference(&mut 42);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2023-10-02 18:14:43 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|