2020-08-28 09:10:16 -05:00
|
|
|
error: the function `takes_an_immutable_reference` doesn't need a mutable reference
|
2023-08-11 07:05:13 -05:00
|
|
|
--> $DIR/mut_reference.rs:30:34
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | takes_an_immutable_reference(&mut 42);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::unnecessary-mut-passed` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: the function `as_ptr` doesn't need a mutable reference
|
2023-08-11 07:05:13 -05:00
|
|
|
--> $DIR/mut_reference.rs:32:12
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | as_ptr(&mut 42);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: the method `takes_an_immutable_reference` doesn't need a mutable reference
|
2023-08-11 07:05:13 -05:00
|
|
|
--> $DIR/mut_reference.rs:36:44
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | my_struct.takes_an_immutable_reference(&mut 42);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2023-07-31 16:53:53 -05:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
2023-08-11 07:05:13 -05:00
|
|
|
--> $DIR/mut_reference.rs:24:44
|
2023-07-31 16:53:53 -05:00
|
|
|
|
|
|
|
|
LL | fn takes_a_mutable_reference(&self, a: &mut i32) {}
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-pass-by-ref-mut` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|