blob: c6aeb42ad753927cc68653b25709a87b58cd753a [file] [log] [blame] [edit]
;; 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)
)
)