summaryrefslogtreecommitdiff
path: root/test/tail-call.wast.from-wast
blob: 2a08be62eac394d5fc8e0d62276cdc252704d66b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(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)
  )
 )
)