summaryrefslogtreecommitdiff
path: root/test/typecheck/bad-assertexception-type-mismatch.txt
blob: ffafedcfee1579dd568f789864dfd39597c9709e (plain)
1
2
3
4
5
6
7
8
9
10
11
;;; TOOL: wast2json
;;; ERROR: 1
(module
  (func (export "foo") (param i32) (result i32) local.get 0)
  )
(assert_exception (invoke "foo" (f32.const 0)))
(;; STDERR ;;;
out/test/typecheck/bad-assertexception-type-mismatch.txt:6:44: error: type mismatch for argument 0 of invoke. got f32, expected i32
(assert_exception (invoke "foo" (f32.const 0)))
                                           ^
;;; STDERR ;;)