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
thanks to shavit for reporting this one.
Gave it a shot myself, but a solution wasn't obvious to me. Here's how to replicate
int main(){ if( { int b = c(); } }
C:\Users\Micha\Desktop\alliedmodders\sourcemod\sourcepawn\build\compiler\spcomp>spcomp test.sp SourcePawn Compiler 1.10 Copyright (c) 1997-2006 ITB CompuPhase Copyright (c) 2004-2018 AlliedModders LLC Assertion failed: lval1->sym!=NULL, file C:\Users\Micha\Desktop\alliedmodders\sourcemod\sourcepawn\compiler\expressions.cpp, line 1057
The text was updated successfully, but these errors were encountered:
Oh gross.
Sorry, something went wrong.
The bug is that { begins an array expression, but those are only expected within initializers.
Fix spcomp assertion on malformed if (#297)
5a49145
d890d13
No branches or pull requests
thanks to shavit for reporting this one.
Gave it a shot myself, but a solution wasn't obvious to me. Here's how to replicate
The text was updated successfully, but these errors were encountered: