diff options
Diffstat (limited to 'test/exception-handling.wast.from-wast')
-rw-r--r-- | test/exception-handling.wast.from-wast | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/exception-handling.wast.from-wast b/test/exception-handling.wast.from-wast new file mode 100644 index 000000000..3866a3561 --- /dev/null +++ b/test/exception-handling.wast.from-wast @@ -0,0 +1,7 @@ +(module + (type $0 (func (param except_ref) (result except_ref))) + (memory $0 1 1) + (func $except_ref_test (; 0 ;) (type $0) (param $0 except_ref) (result except_ref) + (local.get $0) + ) +) |