summaryrefslogtreecommitdiff
path: root/test/passes/simplify-globals_all-features_fuzz-exec.wast
blob: 59a12a71ef6d8b8a264e25eb08f1cd0dcad30273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
 (global $global$0 (mut funcref) (ref.null func))
 (func $0 (param $0 f32) (param $1 i31ref) (param $2 i64) (param $3 f64) (param $4 funcref)
  (nop)
 )
 (func $export (export "export") (result funcref)
  ;; this set's value will be applied to the get right after it. we should carry
  ;; over the specific typed function reference type properly while doing so.
  (global.set $global$0
   (ref.func $0)
  )
  (global.get $global$0)
 )
)