summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/parse.c b/parse.c
index cc198cc..26381ac 100644
--- a/parse.c
+++ b/parse.c
@@ -945,6 +945,7 @@ static int op_precedence(Keyword op) {
static bool parse_expr(Parser *p, Expression *e, Token *end) {
Tokenizer *t = p->tokr;
e->flags = 0;
+ e->type.flags = 0;
if (end == NULL) return false;
e->where = t->token->where;
if (end <= t->token) {