-
Notifications
You must be signed in to change notification settings - Fork 13.4k
suggest lifetime for closure parameter type when mismatch #105888
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
fn thing(x: impl FnOnce(&u32, &u32, u32)) {} | ||
|
||
fn main() { | ||
let f = | _ , y: &u32 , z | (); | ||
thing(f); | ||
//~^ ERROR mismatched types | ||
//~^^ ERROR mismatched types | ||
let f = | x, y: _ , z: u32 | (); | ||
thing(f); | ||
//~^ ERROR mismatched types | ||
//~^^ ERROR mismatched types | ||
//~^^^ ERROR implementation of `FnOnce` is not general enough | ||
//~^^^^ ERROR implementation of `FnOnce` is not general enough | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/issue-105675.rs:5:5 | ||
| | ||
LL | thing(f); | ||
| ^^^^^^^^ one type is more general than the other | ||
| | ||
= note: expected trait `for<'a, 'b> FnOnce<(&'a u32, &'b u32, u32)>` | ||
found trait `for<'a> FnOnce<(&u32, &'a u32, u32)>` | ||
note: this closure does not fulfill the lifetime requirements | ||
--> $DIR/issue-105675.rs:4:13 | ||
| | ||
LL | let f = | _ , y: &u32 , z | (); | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
note: the lifetime requirement is introduced here | ||
--> $DIR/issue-105675.rs:1:18 | ||
| | ||
LL | fn thing(x: impl FnOnce(&u32, &u32, u32)) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
help: consider specifying the type of the closure parameters | ||
| | ||
LL | let f = |_: &_, y: &u32, z| (); | ||
| ~~~~~~~~~~~~~~~~~~~ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/issue-105675.rs:5:5 | ||
| | ||
LL | thing(f); | ||
| ^^^^^^^^ one type is more general than the other | ||
| | ||
= note: expected trait `for<'a, 'b> FnOnce<(&'a u32, &'b u32, u32)>` | ||
found trait `for<'a> FnOnce<(&u32, &'a u32, u32)>` | ||
note: this closure does not fulfill the lifetime requirements | ||
--> $DIR/issue-105675.rs:4:13 | ||
| | ||
LL | let f = | _ , y: &u32 , z | (); | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
note: the lifetime requirement is introduced here | ||
--> $DIR/issue-105675.rs:1:18 | ||
| | ||
LL | fn thing(x: impl FnOnce(&u32, &u32, u32)) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/issue-105675.rs:9:5 | ||
| | ||
LL | thing(f); | ||
| ^^^^^^^^ one type is more general than the other | ||
| | ||
= note: expected trait `for<'a, 'b> FnOnce<(&'a u32, &'b u32, u32)>` | ||
found trait `FnOnce<(&u32, &u32, u32)>` | ||
note: this closure does not fulfill the lifetime requirements | ||
--> $DIR/issue-105675.rs:8:13 | ||
| | ||
LL | let f = | x, y: _ , z: u32 | (); | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
note: the lifetime requirement is introduced here | ||
--> $DIR/issue-105675.rs:1:18 | ||
| | ||
LL | fn thing(x: impl FnOnce(&u32, &u32, u32)) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
help: consider specifying the type of the closure parameters | ||
| | ||
LL | let f = |x: &_, y: &_, z: u32| (); | ||
| ~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/issue-105675.rs:9:5 | ||
| | ||
LL | thing(f); | ||
| ^^^^^^^^ one type is more general than the other | ||
| | ||
= note: expected trait `for<'a, 'b> FnOnce<(&'a u32, &'b u32, u32)>` | ||
found trait `FnOnce<(&u32, &u32, u32)>` | ||
note: this closure does not fulfill the lifetime requirements | ||
--> $DIR/issue-105675.rs:8:13 | ||
| | ||
LL | let f = | x, y: _ , z: u32 | (); | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
note: the lifetime requirement is introduced here | ||
--> $DIR/issue-105675.rs:1:18 | ||
| | ||
LL | fn thing(x: impl FnOnce(&u32, &u32, u32)) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
help: consider specifying the type of the closure parameters | ||
| | ||
LL | let f = |x: &_, y: &_, z: u32| (); | ||
| ~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error: implementation of `FnOnce` is not general enough | ||
--> $DIR/issue-105675.rs:9:5 | ||
| | ||
LL | thing(f); | ||
| ^^^^^^^^ implementation of `FnOnce` is not general enough | ||
| | ||
= note: closure with signature `fn(&'2 u32, &u32, u32)` must implement `FnOnce<(&'1 u32, &u32, u32)>`, for any lifetime `'1`... | ||
= note: ...but it actually implements `FnOnce<(&'2 u32, &u32, u32)>`, for some specific lifetime `'2` | ||
|
||
error: implementation of `FnOnce` is not general enough | ||
--> $DIR/issue-105675.rs:9:5 | ||
| | ||
LL | thing(f); | ||
| ^^^^^^^^ implementation of `FnOnce` is not general enough | ||
| | ||
= note: closure with signature `fn(&u32, &'2 u32, u32)` must implement `FnOnce<(&u32, &'1 u32, u32)>`, for any lifetime `'1`... | ||
= note: ...but it actually implements `FnOnce<(&u32, &'2 u32, u32)>`, for some specific lifetime `'2` | ||
|
||
error: aborting due to 6 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,10 @@ note: the lifetime requirement is introduced here | |
| | ||
LL | fn take_foo(_: impl Foo) {} | ||
| ^^^ | ||
help: consider specifying the type of the closure parameters | ||
| | ||
LL | take_foo(|a: &_| a); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ... so that we can produce diagnostics message like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The span may be messed up because of the desugaring into a parameter 🤷 |
||
| ~~~~~~~ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/issue-79187-2.rs:11:5 | ||
|
Uh oh!
There was an error while loading. Please reload this page.