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

Compile error on errorset inference involving async functions #2398

Closed
adrusi opened this issue May 1, 2019 · 1 comment
Closed

Compile error on errorset inference involving async functions #2398

adrusi opened this issue May 1, 2019 · 1 comment
Labels
bug Observed behavior contradicts documented or intended behavior
Milestone

Comments

@adrusi
Copy link

adrusi commented May 1, 2019

The 0.4.0 compiler fails an assertion for the following code:

const std = @import("std");

async fn a() !void {
    return error.Example;
}

const Error = @typeInfo(@typeInfo(@typeOf(a)).Fn.return_type.?).ErrorUnion.error_set;
// const Error = anyerror;

async fn b(err1: *?Error) void {
    const p = async<std.debug.global_allocator> a() catch {
        @panic("failed to start coroutine");
    };
    await p catch |err| {
        err1.* = err;
    };
}

fn c() !void {
    var err1: ?Error = null;
    const p = try async<std.debug.global_allocator> b(&err1);

    if (err1) |err| {
        return err;
    }
}
    
test "make compile fail" {
    try c();
}

Compiler output:

$ zig test bug.zig
zig: /build/zig/src/zig-0.4.0/src/analyze.cpp:3581: void define_local_param_variables(CodeGen*, ZigFn*): Assertion `!fn_type->data.fn.is_generic' failed.

Defining Error to be anyerror makes it compile and run as expected.

@andrewrk andrewrk added this to the 0.5.0 milestone May 2, 2019
@andrewrk andrewrk added the bug Observed behavior contradicts documented or intended behavior label May 2, 2019
@andrewrk
Copy link
Member

Updated test case after the async/await rewrite:

const std = @import("std");

async fn a() !void {
    return error.Example;
}

const Error = @typeInfo(@typeInfo(@typeOf(a)).Fn.return_type.?).ErrorUnion.error_set;
// const Error = anyerror;

async fn b(err1: *?Error) void {
    var f = async a();
    await f catch |err| {
        err1.* = err;
    };
}

fn c() !void {
    var err1: ?Error = null;
    const p = async b(&err1);

    if (err1) |err| {
        return err;
    }
}

test "make compile fail" {
    try c();
}

output for me:

1/1 test "make compile fail"...error: Example
/home/andy/dev/zig/build/test.zig:22:9: 0x20578d in c (test)
        return err;
        ^
/home/andy/dev/zig/build/test.zig:27:5: 0x2055bc in test "make compile fail" (test)
    try c();
    ^
/home/andy/dev/zig/build/lib/zig/std/special/test_runner.zig:21:21: 0x227bb9 in std.special.main (test)
            else => return err,
                    ^


I believe this is resolved.

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

2 participants