blob: 745467848f9389c2fd0fc4de136b4156bcdf2afa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;; TOOL: wat2wasm
;;; ERROR: 1
(module (func (export "f")))
;; Can't use assert_return when parsing a .wat file.
(assert_return (invoke "f"))
(;; STDERR ;;;
out/test/parse/module/bad-module-with-assert.txt:6:1: error: unexpected token (, expected EOF.
(assert_return (invoke "f"))
^
;;; STDERR ;;)
|