blob: 56f320974747474636ac635d87fe5071cb4f0a87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;; TOOL: wast2json
;;; ERROR: 1
(module
(func (param i32))
(export "foo" 0))
(invoke "foo" (f32.const 1.5))
(;; STDERR ;;;
out/test/typecheck/bad-invoke-type-mismatch.txt:5:17: error: unexpected token 0, expected (.
(export "foo" 0))
^
;;; STDERR ;;)
|