summaryrefslogtreecommitdiff
path: root/test/regress/interp-throw-before-try.txt
blob: 69ea3001b8c242408161d546c2a738c69c77e058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
;;; TOOL: run-interp-spec
;;; ARGS*: --enable-exceptions
(module
  (tag $e0)
  (func (export "throws")
    (throw $e0)
    (try $try
      (do
      )
      (catch $e0)
    )
  )
)

(assert_exception (invoke "throws"))
(;; STDOUT ;;;
out/test/regress/interp-throw-before-try.txt:15: assert_exception passed
2/2 tests passed.
;;; STDOUT ;;)