summaryrefslogtreecommitdiff
path: root/test/parse/expr/bad-try-no-catch.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/parse/expr/bad-try-no-catch.txt')
-rw-r--r--test/parse/expr/bad-try-no-catch.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/parse/expr/bad-try-no-catch.txt b/test/parse/expr/bad-try-no-catch.txt
deleted file mode 100644
index c85756fb..00000000
--- a/test/parse/expr/bad-try-no-catch.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-;;; TOOL: wat2wasm
-;;; ARGS: --enable-exceptions
-;;; ERROR: 1
-(module
- (func try nop end)
- (func (try (do nop))))
-(;; STDERR ;;;
-out/test/parse/expr/bad-try-no-catch.txt:5:17: error: unexpected token "end", expected catch, catch_all or delegate.
- (func try nop end)
- ^^^
-out/test/parse/expr/bad-try-no-catch.txt:6:22: error: unexpected token ), expected (.
- (func (try (do nop))))
- ^
-;;; STDERR ;;)