summaryrefslogtreecommitdiff
path: root/test/lit/parse-bad-identifier.wast
blob: 984e7e2300e70d395b0590d6a0a0feb7bf046944 (plain)
1
2
3
4
5
6
7
8
;; RUN: not wasm-opt %s -S -o - 2>&1 | filecheck %s

;; CHECK: 7:10: error: expected valtype

(module
  ;; String identifiers must still be UTF-8.
  (global $"\ff" i32 (i32.const 0))
)