summaryrefslogtreecommitdiff
path: root/test/mutable-global.wast
blob: 1cb59de1196a8755b8850146fabeea336b025686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(module
  (type $0 (func))
  (import "env" "global-mut" (global $global-mut (mut i32)))
  (func $foo (type $0)
    (global.set $global-mut
      (i32.add
        (global.get $global-mut)
        (i32.const 1)
      )
    )
  )
)