summaryrefslogtreecommitdiff
path: root/test/tail-call.wast.fromBinary.noDebugInfo
blob: 91962633070136849b895090e930155078c7c85f (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) $0)
 (func $0
  (return_call $1)
 )
 (func $1
  (return_call_indirect $0 (type $none_=>_none)
   (i32.const 0)
  )
 )
)