summaryrefslogtreecommitdiff
path: root/test/polymorphic_stack.wast.from-wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/polymorphic_stack.wast.from-wast')
-rw-r--r--test/polymorphic_stack.wast.from-wast10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/polymorphic_stack.wast.from-wast b/test/polymorphic_stack.wast.from-wast
index b4b88f16b..c20f9218d 100644
--- a/test/polymorphic_stack.wast.from-wast
+++ b/test/polymorphic_stack.wast.from-wast
@@ -90,4 +90,14 @@
)
)
)
+ (func $br_table_unreachable_to_also_unreachable (type $1) (result i32)
+ (block $a (result i32)
+ (block $b
+ (br_table $a $b
+ (unreachable)
+ (unreachable)
+ )
+ )
+ )
+ )
)