blob: e6f53240cee2bf3742119b57d23d8f6ef1cb26c6 [file] [log] [blame]
(module
(type $none_=>_none (func))
(import "env" "global-mut" (global $global-mut (mut i32)))
(func $foo
(global.set $global-mut
(i32.add
(global.get $global-mut)
(i32.const 1)
)
)
)
)