We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
0.14.0
pub fn main() !void { return error.Test; }
Put this in a file test.zig and for windows and run it with wine:
test.zig
$ zig build-exe test.zig -target x86_64-windows-gnu $ wine test error: Test Unable to dump stack trace: Unexpected
It fails with error.Unexpected This might be related to #19353 (comment)
It should print a trace, which works fine on the host:
$ zig run test.zig error: Test /home/mint/Desktop/test.zig:2:2: 0x10ddf18 in main (test) return error.Test; ^
The text was updated successfully, but these errors were encountered:
cc #22492
Sorry, something went wrong.
No branches or pull requests
Zig Version
0.14.0
Steps to Reproduce and Observed Behavior
Put this in a file
test.zig
and for windows and run it with wine:It fails with error.Unexpected
This might be related to #19353 (comment)
Expected Behavior
It should print a trace, which works fine on the host:
The text was updated successfully, but these errors were encountered: