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