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

missing compile error for returning an error from an async function that does not return an error #799

Closed
andrewrk opened this issue Mar 2, 2018 · 0 comments
Labels
bug Observed behavior contradicts documented or intended behavior
Milestone

Comments

@andrewrk
Copy link
Member

andrewrk commented Mar 2, 2018

const std = @import("std");

export fn entry() void {
    const p = async(std.debug.global_allocator) amain() catch unreachable;
}

async fn amain() void {
    return error.ShouldBeCompileError;
}

this builds, but it should be compile error: expected void, found error
it gets tricked because of the possible coro allocation frame failure.

@andrewrk andrewrk added the bug Observed behavior contradicts documented or intended behavior label Mar 2, 2018
@andrewrk andrewrk added this to the 0.2.0 milestone Mar 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Observed behavior contradicts documented or intended behavior
Projects
None yet
Development

No branches or pull requests

1 participant