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