summaryrefslogtreecommitdiff
path: root/test/tail-call.wast
blob: ceea1239eb80de4b8cece0ffe8a499bd27bd78f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
(module
 (type $void (func))
 (table 1 1 funcref)
 (elem (i32.const 0) $foo)
 (func $foo
  (return_call $bar)
 )
 (func $bar
  (return_call_indirect (type $void) (i32.const 0))
 )
)