diff options
Diffstat (limited to 'test/break-within-catch.wasm.fromBinary')
-rw-r--r-- | test/break-within-catch.wasm.fromBinary | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/break-within-catch.wasm.fromBinary b/test/break-within-catch.wasm.fromBinary index 82ab6e717..d7e2dc57b 100644 --- a/test/break-within-catch.wasm.fromBinary +++ b/test/break-within-catch.wasm.fromBinary @@ -1,14 +1,16 @@ (module (type $none_=>_none (func)) + (type $i32_=>_none (func (param i32))) + (event $event$0 (attr 0) (param i32)) (func $0 (block $label$2 (try (do (nop) ) - (catch + (catch $event$0 (drop - (pop exnref) + (pop i32) ) (br $label$2) ) |