blob: 1825f39c46babb947419237465c79c58bdb8c899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;; ERROR: 1
(module (func
(local $n i32)
(set_local n (i32.const 0))))
(;; STDERR ;;;
parse/expr/bad-setlocal-name.txt:4:14: unexpected token "n"
(set_local n (i32.const 0))))
^
parse/expr/bad-setlocal-name.txt:4:16: syntax error, unexpected (, expecting NAT or VAR
(set_local n (i32.const 0))))
^
;;; STDERR ;;)
|