blob: 8ee9d055508eef9da25588bed32bfc6eb1b07d2d [file] [log] [blame]
(module
(type $0 (func))
(import "env" "global-mut" (global $global-mut (mut i32)))
(func $foo (; 0 ;) (type $0)
(global.set $global-mut
(i32.add
(global.get $global-mut)
(i32.const 1)
)
)
)
)