2023-07-17 08:19:29 +00:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:6:11
|
|
|
|
|
|
|
|
|
LL | fn foo(s: &mut Vec<u32>, b: &u32, x: &mut u32) {
|
|
|
|
| ^^^^^^^^^^^^^ help: consider changing to: `&Vec<u32>`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-pass-by-ref-mut` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_pass_by_ref_mut)]`
|
2023-07-17 08:19:29 +00:00
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:31:12
|
|
|
|
|
|
|
|
|
LL | fn foo6(s: &mut Vec<u32>) {
|
|
|
|
| ^^^^^^^^^^^^^ help: consider changing to: `&Vec<u32>`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:44:29
|
|
|
|
|
|
|
|
|
LL | fn mushroom(&self, vec: &mut Vec<i32>) -> usize {
|
|
|
|
| ^^^^^^^^^^^^^ help: consider changing to: `&Vec<i32>`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:49:31
|
|
|
|
|
|
|
|
|
LL | fn badger(&mut self, vec: &mut Vec<i32>) -> usize {
|
|
|
|
| ^^^^^^^^^^^^^ help: consider changing to: `&Vec<i32>`
|
|
|
|
|
2023-07-31 21:53:53 +00:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:126:16
|
|
|
|
|
|
|
|
|
LL | async fn a1(x: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:130:16
|
|
|
|
|
|
|
|
|
LL | async fn a2(x: &mut i32, y: String) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:134:16
|
|
|
|
|
|
|
|
|
LL | async fn a3(x: &mut i32, y: String, z: String) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:138:16
|
|
|
|
|
|
|
|
|
LL | async fn a4(x: &mut i32, y: i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:142:24
|
|
|
|
|
|
|
|
|
LL | async fn a5(x: i32, y: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:146:24
|
|
|
|
|
|
|
|
|
LL | async fn a6(x: i32, y: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:150:32
|
|
|
|
|
|
|
|
|
LL | async fn a7(x: i32, y: i32, z: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:154:24
|
|
|
|
|
|
|
|
|
LL | async fn a8(x: i32, a: &mut i32, y: i32, z: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:154:45
|
|
|
|
|
|
|
|
|
LL | async fn a8(x: i32, a: &mut i32, y: i32, z: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:188:16
|
|
|
|
|
|
|
|
|
LL | fn cfg_warn(s: &mut u32) {}
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&u32`
|
|
|
|
|
|
|
|
|
= note: this is cfg-gated and may require further changes
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:194:20
|
|
|
|
|
|
|
|
|
LL | fn cfg_warn(s: &mut u32) {}
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&u32`
|
|
|
|
|
|
|
|
|
= note: this is cfg-gated and may require further changes
|
|
|
|
|
2023-08-17 15:55:23 +00:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:208:39
|
|
|
|
|
|
|
|
|
LL | async fn inner_async2(x: &mut i32, y: &mut u32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&u32`
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:216:26
|
|
|
|
|
|
|
|
|
LL | async fn inner_async3(x: &mut i32, y: &mut u32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
2023-09-13 12:39:41 +00:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
2023-09-22 16:04:57 +00:00
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:235:34
|
|
|
|
|
|
|
|
|
LL | pub async fn call_in_closure1(n: &mut str) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&str`
|
|
|
|
|
|
|
|
|
= warning: changing this function will impact semver compatibility
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:247:25
|
2023-09-13 12:39:41 +00:00
|
|
|
|
|
|
|
|
LL | pub async fn closure(n: &mut usize) -> impl '_ + FnMut() {
|
|
|
|
| ^^^^^^^^^^ help: consider changing to: `&usize`
|
|
|
|
|
|
|
|
|
= warning: changing this function will impact semver compatibility
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
2023-09-22 16:04:57 +00:00
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:254:20
|
2023-09-13 12:39:41 +00:00
|
|
|
|
|
|
|
|
LL | pub fn closure2(n: &mut usize) -> impl '_ + FnMut() -> usize {
|
|
|
|
| ^^^^^^^^^^ help: consider changing to: `&usize`
|
|
|
|
|
|
|
|
|
= warning: changing this function will impact semver compatibility
|
|
|
|
|
|
|
|
error: this argument is a mutable reference, but not used mutably
|
2023-09-22 16:04:57 +00:00
|
|
|
--> $DIR/needless_pass_by_ref_mut.rs:265:26
|
2023-09-13 12:39:41 +00:00
|
|
|
|
|
|
|
|
LL | pub async fn closure4(n: &mut usize) {
|
|
|
|
| ^^^^^^^^^^ help: consider changing to: `&usize`
|
|
|
|
|
|
|
|
|
= warning: changing this function will impact semver compatibility
|
|
|
|
|
2023-09-22 16:04:57 +00:00
|
|
|
error: aborting due to 21 previous errors
|
2023-07-17 08:19:29 +00:00
|
|
|
|