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