You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#116201 - Jarcho:noop_fix, r=fee1-dead
Fix `noop_method_call` detection
This needs to be merged before rust-lang#116198 can compile. The error occurs before the compiler is built so this needs to be a separate PR.
warning: call to `.clone()` on a reference in this situation does nothing
11
-
--> $DIR/noop-method-call.rs:17:21
11
+
--> $DIR/noop-method-call.rs:18:21
12
12
|
13
13
LL | let _ = &encoded.clone();
14
14
| ^^^^^^^^ help: remove this redundant call
15
15
|
16
16
= note: the type `[u8]` does not implement `Clone`, so calling `clone` on `&[u8]` copies the reference, which does not do anything and can be removed
17
17
18
18
warning: call to `.clone()` on a reference in this situation does nothing
19
-
--> $DIR/noop-method-call.rs:23:71
19
+
--> $DIR/noop-method-call.rs:24:71
20
20
|
21
21
LL | let non_clone_type_ref_clone: &PlainType<u32> = non_clone_type_ref.clone();
22
22
| ^^^^^^^^ help: remove this redundant call
23
23
|
24
24
= note: the type `PlainType<u32>` does not implement `Clone`, so calling `clone` on `&PlainType<u32>` copies the reference, which does not do anything and can be removed
25
25
26
26
warning: call to `.deref()` on a reference in this situation does nothing
27
-
--> $DIR/noop-method-call.rs:31:63
27
+
--> $DIR/noop-method-call.rs:32:63
28
28
|
29
29
LL | let non_deref_type_deref: &PlainType<u32> = non_deref_type.deref();
30
30
| ^^^^^^^^ help: remove this redundant call
31
31
|
32
32
= note: the type `PlainType<u32>` does not implement `Deref`, so calling `deref` on `&PlainType<u32>` copies the reference, which does not do anything and can be removed
33
33
34
34
warning: call to `.borrow()` on a reference in this situation does nothing
35
-
--> $DIR/noop-method-call.rs:35:66
35
+
--> $DIR/noop-method-call.rs:36:66
36
36
|
37
37
LL | let non_borrow_type_borrow: &PlainType<u32> = non_borrow_type.borrow();
38
38
| ^^^^^^^^^ help: remove this redundant call
39
39
|
40
40
= note: the type `PlainType<u32>` does not implement `Borrow`, so calling `borrow` on `&PlainType<u32>` copies the reference, which does not do anything and can be removed
41
41
42
42
warning: call to `.clone()` on a reference in this situation does nothing
43
-
--> $DIR/noop-method-call.rs:44:19
43
+
--> $DIR/noop-method-call.rs:45:19
44
44
|
45
45
LL | non_clone_type.clone();
46
46
| ^^^^^^^^ help: remove this redundant call
47
47
|
48
48
= note: the type `PlainType<T>` does not implement `Clone`, so calling `clone` on `&PlainType<T>` copies the reference, which does not do anything and can be removed
49
49
50
50
warning: call to `.clone()` on a reference in this situation does nothing
0 commit comments