blob: 6f36f09bc383797ec4027e62bf254c601d9450df [file] [edit]
(module
(type $s (struct (field (mut i32))))
(tag $t)
(func $asdf (param $ref (ref $s)) (param $b i32)
(struct.set $s 0 (local.get $ref) (i32.const 1))
(if (local.get $b) (then (throw $t)))
(struct.set $s 0 (local.get $ref) (i32.const 2))
)
)