diff --git a/src/parser.cpp b/src/parser.cpp index 747677946..13225f622 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -5014,6 +5014,7 @@ gb_internal Ast *parse_stmt(AstFile *f) { case Token_Xor: case Token_Not: case Token_And: + case Token_Mul: // Used for error handling when people do C-like things s = parse_simple_stmt(f, StmtAllowFlag_Label); expect_semicolon(f); return s;