;;; 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 ;;)
