summaryrefslogtreecommitdiff
path: root/test/lit/parse-error.wast
blob: c6aeb42ad753927cc68653b25709a87b58cd753a (plain)
1
2
3
4
5
6
7
8
9
10
;; Test that parse errors have helpful messages

;; RUN: not wasm-opt %s 2>&1 | filecheck %s
;; CHECK: Fatal: 8:5: error: unrecognized instruction

(module
  (func $foo
    (abc)
  )
)