blob: 146aa1ae0766c44798027614c07e0d038c5b6fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;; TOOL: wast2json
;;; ERROR: 1
;; syntax is (input name? text)
(input "hello")
(input $var "hello")
(;; STDERR ;;;
out/test/parse/bad-input-command.txt:4:2: error: input command is not supported
(input "hello")
^^^^^
out/test/parse/bad-input-command.txt:5:2: error: input command is not supported
(input $var "hello")
^^^^^
;;; STDERR ;;)
|