Skip to content

Commit f4753fe

Browse files
authored
Unrolled build for rust-lang#118502
Rollup merge of rust-lang#118502 - Young-Flash:fix, r=compiler-errors fix: correct the arg for 'suggest to use associated function syntax' diagnostic close rust-lang#118469
2 parents 2d2f1b2 + e4cfe03 commit f4753fe

File tree

4 files changed

+78
-3
lines changed

4 files changed

+78
-3
lines changed

compiler/rustc_hir_typeck/src/method/suggest.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1591,10 +1591,12 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
15911591
{
15921592
let sig = self.tcx.fn_sig(assoc.def_id).instantiate_identity();
15931593
sig.inputs().skip_binder().get(0).and_then(|first| {
1594-
if first.peel_refs() == rcvr_ty.peel_refs() {
1595-
None
1596-
} else {
1594+
let impl_ty = self.tcx.type_of(*impl_did).instantiate_identity();
1595+
// if the type of first arg is the same as the current impl type, we should take the first arg into assoc function
1596+
if first.peel_refs() == impl_ty {
15971597
Some(first.ref_mutability().map_or("", |mutbl| mutbl.ref_prefix_str()))
1598+
} else {
1599+
None
15981600
}
15991601
})
16001602
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// run-rustfix
2+
3+
struct A {}
4+
5+
impl A {
6+
fn hello(_a: i32) {}
7+
fn test(_a: Self, _b: i32) {}
8+
}
9+
10+
fn main() {
11+
let _a = A {};
12+
A::hello(1);
13+
//~^ ERROR no method named `hello` found
14+
A::test(_a, 1);
15+
//~^ ERROR no method named `test` found
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// run-rustfix
2+
3+
struct A {}
4+
5+
impl A {
6+
fn hello(_a: i32) {}
7+
fn test(_a: Self, _b: i32) {}
8+
}
9+
10+
fn main() {
11+
let _a = A {};
12+
_a.hello(1);
13+
//~^ ERROR no method named `hello` found
14+
_a.test(1);
15+
//~^ ERROR no method named `test` found
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
error[E0599]: no method named `hello` found for struct `A` in the current scope
2+
--> $DIR/suggest-assoc-fn-call-without-receiver.rs:12:8
3+
|
4+
LL | struct A {}
5+
| -------- method `hello` not found for this struct
6+
...
7+
LL | _a.hello(1);
8+
| ---^^^^^---
9+
| | |
10+
| | this is an associated function, not a method
11+
| help: use associated function syntax instead: `A::hello(1)`
12+
|
13+
= note: found the following associated functions; to be used as methods, functions must have a `self` parameter
14+
note: the candidate is defined in an impl for the type `A`
15+
--> $DIR/suggest-assoc-fn-call-without-receiver.rs:6:5
16+
|
17+
LL | fn hello(_a: i32) {}
18+
| ^^^^^^^^^^^^^^^^^
19+
20+
error[E0599]: no method named `test` found for struct `A` in the current scope
21+
--> $DIR/suggest-assoc-fn-call-without-receiver.rs:14:8
22+
|
23+
LL | struct A {}
24+
| -------- method `test` not found for this struct
25+
...
26+
LL | _a.test(1);
27+
| ---^^^^---
28+
| | |
29+
| | this is an associated function, not a method
30+
| help: use associated function syntax instead: `A::test(_a, 1)`
31+
|
32+
= note: found the following associated functions; to be used as methods, functions must have a `self` parameter
33+
note: the candidate is defined in an impl for the type `A`
34+
--> $DIR/suggest-assoc-fn-call-without-receiver.rs:7:5
35+
|
36+
LL | fn test(_a: Self, _b: i32) {}
37+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
38+
39+
error: aborting due to 2 previous errors
40+
41+
For more information about this error, try `rustc --explain E0599`.

0 commit comments

Comments
 (0)