We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a330403 commit 0820ccbCopy full SHA for 0820ccb
source/build.info
@@ -1 +1 @@
1
-"9712:0834"
+"9712:0850"
source/parse.h
@@ -8575,7 +8575,9 @@ class parser
8575
{
8576
n->equal_sign = curr().position();
8577
n->initializer = statement(/*ignore semicolon_required*/ false, n->equal_sign);
8578
- assert( n->initializer && "ICE: should have already validated that there's a valid expression-statement here" );
+ if (!n->initializer) {
8579
+ return {};
8580
+ }
8581
}
8582
8583
else
0 commit comments