forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
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#101019 - compiler-errors:return-closure-sug…
…gestion, r=cjgillot Suggest returning closure as `impl Fn` Fixes rust-lang#100936
- Loading branch information
Showing
6 changed files
with
106 additions
and
24 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
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
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,13 @@ | ||
fn foo() { | ||
//~^ HELP try adding a return type | ||
|x: &i32| 1i32 | ||
//~^ ERROR mismatched types | ||
} | ||
|
||
fn bar(i: impl Sized) { | ||
//~^ HELP a return type might be missing here | ||
|| i | ||
//~^ ERROR mismatched types | ||
} | ||
|
||
fn main() {} |
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,27 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/return-closures.rs:3:5 | ||
| | ||
LL | fn foo() { | ||
| - help: try adding a return type: `-> impl for<'r> Fn(&'r i32) -> i32` | ||
LL | | ||
LL | |x: &i32| 1i32 | ||
| ^^^^^^^^^^^^^^ expected `()`, found closure | ||
| | ||
= note: expected unit type `()` | ||
found closure `[closure@$DIR/return-closures.rs:3:5: 3:14]` | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/return-closures.rs:9:5 | ||
| | ||
LL | fn bar(i: impl Sized) { | ||
| - help: a return type might be missing here: `-> _` | ||
LL | | ||
LL | || i | ||
| ^^^^ expected `()`, found closure | ||
| | ||
= note: expected unit type `()` | ||
found closure `[closure@$DIR/return-closures.rs:9:5: 9:7]` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |