summaryrefslogtreecommitdiff
path: root/test/exception-handling.wast.from-wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/exception-handling.wast.from-wast')
-rw-r--r--test/exception-handling.wast.from-wast19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/exception-handling.wast.from-wast b/test/exception-handling.wast.from-wast
index 85a21e9bf..93945c39c 100644
--- a/test/exception-handling.wast.from-wast
+++ b/test/exception-handling.wast.from-wast
@@ -63,4 +63,23 @@
)
)
)
+ (func $subtype_test (; 4 ;)
+ (try
+ (nop)
+ (catch
+ (drop
+ (exnref.pop)
+ )
+ (drop
+ (block $l0 (result i32)
+ (rethrow
+ (br_on_exn $l0 $e0
+ (ref.null)
+ )
+ )
+ )
+ )
+ )
+ )
+ )
)