diff options
Diffstat (limited to 'test/exception-handling.wast.fromBinary')
-rw-r--r-- | test/exception-handling.wast.fromBinary | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/exception-handling.wast.fromBinary b/test/exception-handling.wast.fromBinary index f83ad5d48..369b17dd9 100644 --- a/test/exception-handling.wast.fromBinary +++ b/test/exception-handling.wast.fromBinary @@ -66,5 +66,24 @@ ) ) ) + (func $subtype_test (; 4 ;) + (try + (nop) + (catch + (drop + (exnref.pop) + ) + (drop + (block $label$3 (result i32) + (rethrow + (br_on_exn $label$3 $event$0 + (ref.null) + ) + ) + ) + ) + ) + ) + ) ) |