summaryrefslogtreecommitdiff
path: root/test/passes/duplicate-function-elimination_all-features.txt
blob: 0c6651b9700c90dd11a4d5d6a7159f383b296563 (plain)
1
2
3
4
5
6
7
8
9
10
(module
 (type $none_=>_i32 (func (result i32)))
 (type $none_=>_funcref (func (result funcref)))
 (func $0 (result i32)
  (i32.const 0)
 )
 (func $test (result funcref)
  (ref.func $0)
 )
)