summaryrefslogtreecommitdiff
path: root/test/tail-call.wast.fromBinary
blob: 70438c907eb265cc47ddd32a2c8c7c9674d8b029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
 (type $none_=>_none (func))
 (table $0 1 1 funcref)
 (elem (i32.const 0) $foo)
 (func $foo
  (return_call $bar)
 )
 (func $bar
  (return_call_indirect (type $none_=>_none)
   (i32.const 0)
  )
 )
)