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
when I tranlate this file by ·zig cc assert.c && ./a.out
zig cc assert.c && ./a.out
//assert.c #include <assert.h> int main(){ assert(0); }
error happend :
assert.v:5:81: error: use `?` instead of `?void` 3 | 4 | fn main() { 5 | (if __builtin_expect(!(0), 0){ __assert_rtn(@FN, c'assert.c', 4, c'0') } else {void(0)}) | ~~~~ 6 | }
What should I do to inplace fix assert.v to run it without error?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when I tranlate this file by ·
zig cc assert.c && ./a.out
error happend :
What should I do to inplace fix assert.v to run it without error?
The text was updated successfully, but these errors were encountered: