summaryrefslogtreecommitdiff
path: root/test/duplicated_names_collision.wasm.fromBinary
blob: 146c66a6edda8663a1f19e89782b3370f24bf9e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(module
 (type $none_=>_i32 (func (result i32)))
 (func $foo (result i32)
  (i32.const 0)
 )
 (func $foo.1 (result i32)
  (i32.const 1)
 )
 (func $foo.1.1 (result i32)
  (i32.const 2)
 )
)