blob: 46f76cef6750cf00b6bc34a7fc3b5b1aba508b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;;; TOOL: wat2wasm
;;; ARGS: --enable-exceptions
;;; ERROR: 1
(module
(func (result i32)
try (result i32)
i32.const 1
catch_all
end
))
(;; STDERR ;;;
out/test/typecheck/bad-empty-catch-all.txt:9:5: error: type mismatch in try catch, expected [i32] but got []
end
^^^
;;; STDERR ;;)
|