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