Skip to content
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

return-type mismatch in async function gives "return type inferred" pointing to use of ? #87461

Closed
joshtriplett opened this issue Jul 25, 2021 · 2 comments · Fixed by #87661
Closed
Assignees
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.

Comments

@joshtriplett
Copy link
Member

joshtriplett commented Jul 25, 2021

Given the following code (playground link):

async fn func() -> Result<u16, u64> {
    let _ = async {
        Err(42u64)
    }.await?;

    Ok(())
}

The current output is:

error[E0308]: mismatched types
 --> src/lib.rs:6:8
  |
6 |     Ok(())
  |        ^^ expected `u16`, found `()`
  |
note: return type inferred to be `u16` here
 --> src/lib.rs:2:13
  |
2 |       let _ = async {
  |  _____________^
3 | |         Err(42u64)
4 | |     }.await?;
  | |____________^

error: aborting due to previous error

An even more minimal example:

async fn func() -> Result<u16, u64> {
    Err(42u64)?;

    Ok(())
}

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.

@joshtriplett joshtriplett added 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. labels Jul 25, 2021
@FabianWolff
Copy link
Contributor

I think this is unrelated to both the async and the ? (they just "hide" the problem), because I can reproduce the problem as follows:

fn main() {
    || -> Result<u16, u64> {
        if true {
            return Err(42u64);
        }
        Ok(())
    };
}
error[E0308]: mismatched types
 --> test.rs:6:12
  |
6 |         Ok(())
  |            ^^ expected `u16`, found `()`
  |
note: return type inferred to be `u16` here
 --> test.rs:4:20
  |
4 |             return Err(42u64);
  |                    ^^^^^^^^^^

error: aborting due to previous error

It is caused by the fact that ret_coercion_span (which is used for error reporting later) is set to the span of the first return statement here:

} else if let Some(e) = expr_opt {
if self.ret_coercion_span.get().is_none() {
self.ret_coercion_span.set(Some(e.span));
}
self.check_return_expr(e);
} else {

despite the fact that this only partially defines the return type (it doesn't say anything about the Ok type).

@FabianWolff
Copy link
Contributor

@rustbot claim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants