blob: 95271d0f2642bb6a77a411d95141c292498f8703 [file] [edit]
(module
(type $s (struct (field (mut i32))))
(type $1 (func (param (ref $s))))
(func $asdf (type $1) (param $ref (ref $s))
(struct.set $s 0
(local.get $ref)
(i32.const 1)
)
(struct.set $s 0
(local.get $ref)
(i32.const 2)
)
)
)