summaryrefslogtreecommitdiff
path: root/test/ctor-eval/overlapping-segments.wast.out
blob: 43c2cb0060a7184461085a5f5c9c8f8e1efeec2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(module
 (type $none_=>_i32 (func (result i32)))
 (type $1 (func))
 (table $0 46 funcref)
 (elem $0 (i32.const 9) $1)
 (elem $1 (i32.const 9) $0)
 (export "test1" (func $2))
 (func $0 (type $none_=>_i32) (result i32)
  (unreachable)
 )
 (func $1 (type $none_=>_i32) (result i32)
  (i32.const 65)
 )
 (func $2 (type $1)
  (drop
   (call_indirect $0 (type $none_=>_i32)
    (i32.const 9)
   )
  )
 )
)