wasmer/lib/runtime-core/spectests/break_drop.wast

10 lines
270 B
Plaintext
Raw Normal View History

2019-01-09 04:59:55 +00:00
(module
(func (export "br") (block (br 0)))
(func (export "br_if") (block (br_if 0 (i32.const 1))))
(func (export "br_table") (block (br_table 0 (i32.const 0))))
)
(assert_return (invoke "br"))
(assert_return (invoke "br_if"))
(assert_return (invoke "br_table"))