blob: e4f05c830b67c139757fde61f7b9553f18bd4c98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;; TOOL: run-interp-spec
;;; ARGS*: --enable-exceptions
;;; NOTE: ref: issue-2476
(module
(tag $e0)
(func (export "broken-local") (result i32)
(local $value i32)
(try $try
(do
(local.set $value (i32.const 1))
(throw $e0)
)
(catch $e0)
)
(local.get $value)
)
)
(assert_return (invoke "broken-local") (i32.const 1))
(;; STDOUT ;;;
2/2 tests passed.
;;; STDOUT ;;)
|