diff options
Diffstat (limited to 'test/try-body-multiple-insts.wasm.fromBinary')
-rw-r--r-- | test/try-body-multiple-insts.wasm.fromBinary | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/try-body-multiple-insts.wasm.fromBinary b/test/try-body-multiple-insts.wasm.fromBinary deleted file mode 100644 index 179bb42ab..000000000 --- a/test/try-body-multiple-insts.wasm.fromBinary +++ /dev/null @@ -1,26 +0,0 @@ -(module - (type $none_=>_none (func)) - (func $0 - (nop) - ) - (func $1 - (nop) - ) - (func $2 - (local $0 exnref) - (try - (do - (call $0) - (call $1) - ) - (catch - (drop - (pop exnref) - ) - (call $0) - (call $1) - ) - ) - ) -) - |