summaryrefslogtreecommitdiff
path: root/test/ctor-eval/bad-indirect-call3.wast.out
blob: 1d67f071525131d51f9507c5d194224d6b422e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(module
 (type $0 (func (param externref)))
 (type $1 (func))
 (type $funcref_=>_none (func (param funcref)))
 (memory $0 256 256)
 (data $0 (i32.const 10) "waka waka waka waka waka")
 (table $0 1 1 funcref)
 (elem $implicit-elem (i32.const 0) $callee)
 (export "sig_mismatch" (func $sig_mismatch))
 (func $callee (type $0) (param $0 externref)
  (i32.store8
   (i32.const 40)
   (i32.const 67)
  )
 )
 (func $sig_mismatch (type $1)
  (call_indirect $0 (type $funcref_=>_none)
   (ref.null nofunc)
   (i32.const 0)
  )
 )
)