blob: ab54153c1b1178a5473717ffaa7c861dcc91c3d9 [file] [log] [blame] [edit]
(module
(type $0 (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)
)
)
)
)