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

segfault when passing union enum with u2 field to const slice parameter #664

Closed
andrewrk opened this issue Dec 24, 2017 · 0 comments
Closed
Labels
bug Observed behavior contradicts documented or intended behavior
Milestone

Comments

@andrewrk
Copy link
Member

reported by @thejoshwolfe in the segfault branch which I am now deleting, since I created a minimal reproducer:

pub const Id = union(enum) {
    Invalid: bool,
    StringLiteral: u2,
};

export fn entry() {
    testTokenize([]Id {
        Id { .StringLiteral = 1 },
    });
}

fn testTokenize(expected_tokens: []const Id) { }

pub fn panic(msg: []const u8) -> noreturn { while (true) {} }
@andrewrk andrewrk added the bug Observed behavior contradicts documented or intended behavior label Dec 24, 2017
@andrewrk andrewrk added this to the 0.2.0 milestone Dec 24, 2017
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