forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#40816 - estebank:issue-38321, r=nikomatsakis
Clarify suggetion for field used as method Instead of ```rust error: no method named `src_addr` found for type `&wire::ipv4::Repr` in the current scope --> src/wire/ipv4.rs:409:34 | 409 | packet.set_src_addr(self.src_addr()); | ^^^^^^^^ | note: did you mean to write `self.src_addr`? --> src/wire/ipv4.rs:409:34 | 409 | packet.set_src_addr(self.src_addr()); | ^^^^^^^^ ``` present ```rust error: no method named `src_addr` found for type `&wire::ipv4::Repr` in the current scope --> src/wire/ipv4.rs:409:34 | 409 | packet.set_src_addr(self.src_addr()); | ^^^^^^^^ field, not a method | = help: did you mean to write `self.src_addr` instead of `self.src_addr(...)`? ``` Fix rust-lang#38321.
- Loading branch information
Showing
9 changed files
with
186 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/test/ui/suggestions/confuse-field-and-method/issue-18343.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
error: no method named `closure` found for type `Obj<[closure@$DIR/issue-18343.rs:16:28: 16:33]>` in the current scope | ||
--> $DIR/issue-18343.rs:17:7 | ||
| | ||
17 | o.closure(); | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(o.closure)(...)` if you meant to call the function stored in the `closure` field | ||
|
||
error: aborting due to previous error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 90 additions & 0 deletions
90
src/test/ui/suggestions/confuse-field-and-method/issue-2392.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
error: no method named `closure` found for type `Obj<[closure@$DIR/issue-2392.rs:49:36: 49:41]>` in the current scope | ||
--> $DIR/issue-2392.rs:50:15 | ||
| | ||
50 | o_closure.closure(); //~ ERROR no method named `closure` found | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(o_closure.closure)(...)` if you meant to call the function stored in the `closure` field | ||
|
||
error: no method named `not_closure` found for type `Obj<[closure@$DIR/issue-2392.rs:49:36: 49:41]>` in the current scope | ||
--> $DIR/issue-2392.rs:54:15 | ||
| | ||
54 | o_closure.not_closure(); | ||
| ^^^^^^^^^^^ field, not a method | ||
| | ||
= help: did you mean to write `o_closure.not_closure` instead of `o_closure.not_closure(...)`? | ||
|
||
error: no method named `closure` found for type `Obj<fn() -> u32 {func}>` in the current scope | ||
--> $DIR/issue-2392.rs:60:12 | ||
| | ||
60 | o_func.closure(); //~ ERROR no method named `closure` found | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(o_func.closure)(...)` if you meant to call the function stored in the `closure` field | ||
|
||
error: no method named `boxed_closure` found for type `BoxedObj` in the current scope | ||
--> $DIR/issue-2392.rs:65:14 | ||
| | ||
65 | boxed_fn.boxed_closure();//~ ERROR no method named `boxed_closure` found | ||
| ^^^^^^^^^^^^^ field, not a method | ||
| | ||
= help: use `(boxed_fn.boxed_closure)(...)` if you meant to call the function stored in the `boxed_closure` field | ||
|
||
error: no method named `boxed_closure` found for type `BoxedObj` in the current scope | ||
--> $DIR/issue-2392.rs:70:19 | ||
| | ||
70 | boxed_closure.boxed_closure();//~ ERROR no method named `boxed_closure` found | ||
| ^^^^^^^^^^^^^ field, not a method | ||
| | ||
= help: use `(boxed_closure.boxed_closure)(...)` if you meant to call the function stored in the `boxed_closure` field | ||
|
||
error: no method named `closure` found for type `Obj<fn() -> u32 {func}>` in the current scope | ||
--> $DIR/issue-2392.rs:77:12 | ||
| | ||
77 | w.wrap.closure();//~ ERROR no method named `closure` found | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(w.wrap.closure)(...)` if you meant to call the function stored in the `closure` field | ||
|
||
error: no method named `not_closure` found for type `Obj<fn() -> u32 {func}>` in the current scope | ||
--> $DIR/issue-2392.rs:81:12 | ||
| | ||
81 | w.wrap.not_closure(); | ||
| ^^^^^^^^^^^ field, not a method | ||
| | ||
= help: did you mean to write `w.wrap.not_closure` instead of `w.wrap.not_closure(...)`? | ||
|
||
error: no method named `closure` found for type `Obj<std::boxed::Box<std::boxed::FnBox<(), Output=u32> + 'static>>` in the current scope | ||
--> $DIR/issue-2392.rs:86:24 | ||
| | ||
86 | check_expression().closure();//~ ERROR no method named `closure` found | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(check_expression().closure)(...)` if you meant to call the function stored in the `closure` field | ||
|
||
error: no method named `f1` found for type `FuncContainer` in the current scope | ||
--> $DIR/issue-2392.rs:94:31 | ||
| | ||
94 | (*self.container).f1(1); //~ ERROR no method named `f1` found | ||
| ^^ field, not a method | ||
| | ||
= help: use `((*self.container).f1)(...)` if you meant to call the function stored in the `f1` field | ||
|
||
error: no method named `f2` found for type `FuncContainer` in the current scope | ||
--> $DIR/issue-2392.rs:97:31 | ||
| | ||
97 | (*self.container).f2(1); //~ ERROR no method named `f2` found | ||
| ^^ field, not a method | ||
| | ||
= help: use `((*self.container).f2)(...)` if you meant to call the function stored in the `f2` field | ||
|
||
error: no method named `f3` found for type `FuncContainer` in the current scope | ||
--> $DIR/issue-2392.rs:100:31 | ||
| | ||
100 | (*self.container).f3(1); //~ ERROR no method named `f3` found | ||
| ^^ field, not a method | ||
| | ||
= help: use `((*self.container).f3)(...)` if you meant to call the function stored in the `f3` field | ||
|
||
error: aborting due to 11 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/test/ui/suggestions/confuse-field-and-method/issue-32128.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
error: no method named `example` found for type `Example` in the current scope | ||
--> $DIR/issue-32128.rs:22:10 | ||
| | ||
22 | demo.example(1); | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(demo.example)(...)` if you meant to call the function stored in the `example` field | ||
|
||
error: aborting due to previous error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/test/ui/suggestions/confuse-field-and-method/issue-33784.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
error: no method named `closure` found for type `&Obj<[closure@$DIR/issue-33784.rs:35:43: 35:48]>` in the current scope | ||
--> $DIR/issue-33784.rs:37:7 | ||
| | ||
37 | p.closure(); //~ ERROR no method named `closure` found | ||
| ^^^^^^^ field, not a method | ||
| | ||
= help: use `(p.closure)(...)` if you meant to call the function stored in the `closure` field | ||
|
||
error: no method named `fn_ptr` found for type `&&Obj<[closure@$DIR/issue-33784.rs:35:43: 35:48]>` in the current scope | ||
--> $DIR/issue-33784.rs:41:7 | ||
| | ||
41 | q.fn_ptr(); //~ ERROR no method named `fn_ptr` found | ||
| ^^^^^^ field, not a method | ||
| | ||
= help: use `(q.fn_ptr)(...)` if you meant to call the function stored in the `fn_ptr` field | ||
|
||
error: no method named `c_fn_ptr` found for type `&D` in the current scope | ||
--> $DIR/issue-33784.rs:46:7 | ||
| | ||
46 | s.c_fn_ptr(); //~ ERROR no method named `c_fn_ptr` found | ||
| ^^^^^^^^ field, not a method | ||
| | ||
= help: use `(s.c_fn_ptr)(...)` if you meant to call the function stored in the `c_fn_ptr` field | ||
|
||
error: aborting due to 3 previous errors | ||
|