Matthew Saltz

Results 7 comments of Matthew Saltz

I just posted in zig-help on the discord about an example involving packed structs/unions and enums: This is the broken example, made as minimal as possible: [Godbolt](https://godbolt.org/z/x8chdvnrs) Removing "packed" from...

I went ahead and created a [new issue](https://github.com/ziglang/zig/issues/16581#issue-1825190051), since I felt that'd be easiest.

I have a pull request open for this issue [here](https://github.com/lewissbaker/disruptorplus/pull/1) by the way :)

I'm running into an issue I think might be the same problem. If I write a test like: ```zig test "panic" { std.debug.panic("panic\n", .{}); } ``` and I run `zig...

Nevermind, this does not seem like the same issue. The only thing that's the same is that the panic causes a hang rather than a crash. I'll make a new...