summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wast-parser.cc2
-rw-r--r--test/parse/module/bad-element-followed-by-illegal-expression.txt9
2 files changed, 10 insertions, 1 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc
index 236840ec..f950512f 100644
--- a/src/wast-parser.cc
+++ b/src/wast-parser.cc
@@ -874,7 +874,7 @@ bool WastParser::ParseElemExprOpt(ExprList* out_elem_expr) {
}
EXPECT(Rpar);
} else {
- if (ParseExpr(&exprs) != Result::Ok) {
+ if (!IsExpr(PeekPair()) || ParseExpr(&exprs) != Result::Ok) {
return false;
}
}
diff --git a/test/parse/module/bad-element-followed-by-illegal-expression.txt b/test/parse/module/bad-element-followed-by-illegal-expression.txt
new file mode 100644
index 00000000..5243aedc
--- /dev/null
+++ b/test/parse/module/bad-element-followed-by-illegal-expression.txt
@@ -0,0 +1,9 @@
+;;; TOOL: wat2wasm
+;;; ARGS: --enable-gc
+;;; ERROR: 1
+( elem f64 ( ) )
+(;; STDERR ;;;
+out/test/parse/module/bad-element-followed-by-illegal-expression.txt:4:12: error: unexpected token (, expected ).
+( elem f64 ( ) )
+ ^
+;;; STDERR ;;)