summaryrefslogtreecommitdiff
path: root/test/unit.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit.wast')
-rw-r--r--test/unit.wast7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit.wast b/test/unit.wast
index 4311a2a33..55c9e9fa1 100644
--- a/test/unit.wast
+++ b/test/unit.wast
@@ -378,4 +378,11 @@
(func $w
(nop)
)
+ (func $block_and_after (result i32)
+ (block $waka
+ (i32.const 1)
+ (br $waka)
+ )
+ (i32.const 0)
+ )
)