diff options
Diffstat (limited to 'test/parse/expr/bad-br-name-undefined.txt')
-rw-r--r-- | test/parse/expr/bad-br-name-undefined.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parse/expr/bad-br-name-undefined.txt b/test/parse/expr/bad-br-name-undefined.txt index 3c5618e2..8b414d43 100644 --- a/test/parse/expr/bad-br-name-undefined.txt +++ b/test/parse/expr/bad-br-name-undefined.txt @@ -1,7 +1,7 @@ ;;; ERROR: 1 -(module (func (br $n))) +(module (func br $n)) (;; STDERR ;;; -parse/expr/bad-br-name-undefined.txt:2:19: undefined label variable "$n" -(module (func (br $n))) - ^^ +parse/expr/bad-br-name-undefined.txt:2:18: undefined label variable "$n" +(module (func br $n)) + ^^ ;;; STDERR ;;) |