-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Note that the caller chooses a type for type param #122195
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,21 @@ | ||
// Checks existence of a note for "a caller chooses ty for ty param" upon return ty mismatch. | ||
|
||
fn f<T>() -> (T,) { | ||
(0,) //~ ERROR mismatched types | ||
} | ||
|
||
fn g<U, V>() -> (U, V) { | ||
(0, "foo") | ||
//~^ ERROR mismatched types | ||
//~| ERROR mismatched types | ||
} | ||
|
||
fn h() -> u8 { | ||
0u8 | ||
} | ||
|
||
fn main() { | ||
f::<()>(); | ||
g::<(), ()>; | ||
let _ = h(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/return-ty-mismatch-note.rs:4:6 | ||
| | ||
LL | fn f<T>() -> (T,) { | ||
| - expected this type parameter | ||
LL | (0,) | ||
| ^ expected type parameter `T`, found integer | ||
| | ||
= note: expected type parameter `T` | ||
found type `{integer}` | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/return-ty-mismatch-note.rs:8:6 | ||
| | ||
LL | fn g<U, V>() -> (U, V) { | ||
| - expected this type parameter | ||
LL | (0, "foo") | ||
| ^ expected type parameter `U`, found integer | ||
| | ||
= note: expected type parameter `U` | ||
found type `{integer}` | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/return-ty-mismatch-note.rs:8:9 | ||
| | ||
LL | fn g<U, V>() -> (U, V) { | ||
| - expected this type parameter | ||
LL | (0, "foo") | ||
| ^^^^^ expected type parameter `V`, found `&str` | ||
| | ||
= note: expected type parameter `V` | ||
found reference `&'static str` | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ LL | u | |
found type parameter `X` | ||
= note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound | ||
= note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters | ||
= note: the caller chooses a type for `Self` which can be different from `X` | ||
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. Ah, this one is interesting. The note is technically speaking correct but I don't know if it helps the user. Remember that we add the note “the caller chooses …” because the user might not understand that 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. This note doesn't seem very helpful in this instance, no. This particular case probably needs a separate note suggesting that 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. Let's not block this PR on this (given the long history of this diagnostic change with several failed PRs), we should probably not emit the note if the param is Sorry for the delay, I was sitting at my desk wondering why we're not suggesting impl-Trait on
Nah, that's not relevant here. The |
||
|
||
error: aborting due to 1 previous error | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually I wonder if we should add this note in more cases, not just in cases where we suggest RPITs. For example here:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wait how do u undo a
r=
lol (if you want me to add it in more places in this PR)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, let's do this!