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