aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue20232.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue20232.go')
-rw-r--r--test/fixedbugs/issue20232.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/fixedbugs/issue20232.go b/test/fixedbugs/issue20232.go
index f91c74936b..7a0300a4c4 100644
--- a/test/fixedbugs/issue20232.go
+++ b/test/fixedbugs/issue20232.go
@@ -6,6 +6,7 @@
package main
-const _ = 6e5518446744 // ERROR "malformed constant: 6e5518446744 \(exponent overflow\)"
+const x = 6e5518446744 // ERROR "malformed constant: 6e5518446744"
+const _ = x * x
const _ = 1e-1000000000
-const _ = 1e+1000000000 // ERROR "constant too large"
+const _ = 1e+1000000000 // ERROR "malformed constant: 1e\+1000000000"