Skip to content

Commit 85eb17a

Browse files
authored
Unrolled build for rust-lang#116201
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.
2 parents b8536c1 + 66bc682 commit 85eb17a

File tree

4 files changed

+39
-7
lines changed

4 files changed

+39
-7
lines changed

compiler/rustc_lint/src/noop_method_call.rs

+6
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,12 @@ impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
9898
let Ok(Some(i)) = ty::Instance::resolve(cx.tcx, cx.param_env, did, args) else { return };
9999
// (Re)check that it implements the noop diagnostic.
100100
let Some(name) = cx.tcx.get_diagnostic_name(i.def_id()) else { return };
101+
if !matches!(
102+
name,
103+
sym::noop_method_borrow | sym::noop_method_clone | sym::noop_method_deref
104+
) {
105+
return;
106+
}
101107

102108
let receiver_ty = cx.typeck_results().expr_ty(receiver);
103109
let expr_ty = cx.typeck_results().expr_ty_adjusted(expr);

tests/ui/lint/noop-method-call.fixed

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// check-pass
22
// run-rustfix
33

4+
#![feature(rustc_attrs)]
45
#![allow(unused)]
56

67
use std::borrow::Borrow;
@@ -49,3 +50,15 @@ fn non_generic(non_clone_type: &PlainType<u32>) {
4950
non_clone_type;
5051
//~^ WARN call to `.clone()` on a reference in this situation does nothing
5152
}
53+
54+
struct DiagnosticClone;
55+
impl Clone for DiagnosticClone {
56+
#[rustc_diagnostic_item = "other_clone"]
57+
fn clone(&self) -> Self {
58+
DiagnosticClone
59+
}
60+
}
61+
62+
fn with_other_diagnostic_item(x: DiagnosticClone) {
63+
x.clone();
64+
}

tests/ui/lint/noop-method-call.rs

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// check-pass
22
// run-rustfix
33

4+
#![feature(rustc_attrs)]
45
#![allow(unused)]
56

67
use std::borrow::Borrow;
@@ -49,3 +50,15 @@ fn non_generic(non_clone_type: &PlainType<u32>) {
4950
non_clone_type.clone();
5051
//~^ WARN call to `.clone()` on a reference in this situation does nothing
5152
}
53+
54+
struct DiagnosticClone;
55+
impl Clone for DiagnosticClone {
56+
#[rustc_diagnostic_item = "other_clone"]
57+
fn clone(&self) -> Self {
58+
DiagnosticClone
59+
}
60+
}
61+
62+
fn with_other_diagnostic_item(x: DiagnosticClone) {
63+
x.clone();
64+
}

tests/ui/lint/noop-method-call.stderr

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
warning: call to `.clone()` on a reference in this situation does nothing
2-
--> $DIR/noop-method-call.rs:15:25
2+
--> $DIR/noop-method-call.rs:16:25
33
|
44
LL | let _ = &mut encoded.clone();
55
| ^^^^^^^^ help: remove this redundant call
@@ -8,47 +8,47 @@ LL | let _ = &mut encoded.clone();
88
= note: `#[warn(noop_method_call)]` on by default
99

1010
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
1212
|
1313
LL | let _ = &encoded.clone();
1414
| ^^^^^^^^ help: remove this redundant call
1515
|
1616
= 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
1717

1818
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
2020
|
2121
LL | let non_clone_type_ref_clone: &PlainType<u32> = non_clone_type_ref.clone();
2222
| ^^^^^^^^ help: remove this redundant call
2323
|
2424
= 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
2525

2626
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
2828
|
2929
LL | let non_deref_type_deref: &PlainType<u32> = non_deref_type.deref();
3030
| ^^^^^^^^ help: remove this redundant call
3131
|
3232
= 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
3333

3434
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
3636
|
3737
LL | let non_borrow_type_borrow: &PlainType<u32> = non_borrow_type.borrow();
3838
| ^^^^^^^^^ help: remove this redundant call
3939
|
4040
= 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
4141

4242
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
4444
|
4545
LL | non_clone_type.clone();
4646
| ^^^^^^^^ help: remove this redundant call
4747
|
4848
= 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
4949

5050
warning: call to `.clone()` on a reference in this situation does nothing
51-
--> $DIR/noop-method-call.rs:49:19
51+
--> $DIR/noop-method-call.rs:50:19
5252
|
5353
LL | non_clone_type.clone();
5454
| ^^^^^^^^ help: remove this redundant call

0 commit comments

Comments
 (0)