return-type mismatch in async function gives "return type inferred" pointing to use of ?
#87461
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Given the following code (playground link):
The current output is:
An even more minimal example:
This similarly produces a note pointing to the
Err(42u64)?;
line.The note seems entirely unhelpful here; the function's declared type doesn't match the
Ok(())
, and the use of?
has nothing to do with it. An equivalent non-async function omits the note, and just reports the type mismatch.The same output occurs on both stable and today's nightly.
The text was updated successfully, but these errors were encountered: