diff options
Diffstat (limited to 'test/parse/expr/bad-const-i32-overflow.txt')
-rw-r--r-- | test/parse/expr/bad-const-i32-overflow.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parse/expr/bad-const-i32-overflow.txt b/test/parse/expr/bad-const-i32-overflow.txt index f3ae25bb..21bc996b 100644 --- a/test/parse/expr/bad-const-i32-overflow.txt +++ b/test/parse/expr/bad-const-i32-overflow.txt @@ -1,7 +1,7 @@ ;;; ERROR: 1 -(module (func (i32.const 4294967296))) +(module (func i32.const 4294967296)) (;; STDERR ;;; -parse/expr/bad-const-i32-overflow.txt:2:26: invalid literal "4294967296" -(module (func (i32.const 4294967296))) - ^^^^^^^^^^ +parse/expr/bad-const-i32-overflow.txt:2:25: invalid literal "4294967296" +(module (func i32.const 4294967296)) + ^^^^^^^^^^ ;;; STDERR ;;) |