aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue13471.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue13471.go')
-rw-r--r--test/fixedbugs/issue13471.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/fixedbugs/issue13471.go b/test/fixedbugs/issue13471.go
index 9bfc8c3d2c..9069412ffa 100644
--- a/test/fixedbugs/issue13471.go
+++ b/test/fixedbugs/issue13471.go
@@ -9,17 +9,17 @@
package main
func main() {
- const _ int64 = 1e646456992 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ int32 = 1e64645699 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ int16 = 1e6464569 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ int8 = 1e646456 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ int = 1e64645 // ERROR "integer too large|floating-point constant truncated to integer"
+ const _ int64 = 1e646456992 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ int32 = 1e64645699 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ int16 = 1e6464569 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ int8 = 1e646456 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ int = 1e64645 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
- const _ uint64 = 1e646456992 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ uint32 = 1e64645699 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ uint16 = 1e6464569 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ uint8 = 1e646456 // ERROR "integer too large|floating-point constant truncated to integer"
- const _ uint = 1e64645 // ERROR "integer too large|floating-point constant truncated to integer"
+ const _ uint64 = 1e646456992 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ uint32 = 1e64645699 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ uint16 = 1e6464569 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ uint8 = 1e646456 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
+ const _ uint = 1e64645 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
- const _ rune = 1e64645 // ERROR "integer too large|floating-point constant truncated to integer"
+ const _ rune = 1e64645 // ERROR "integer too large|floating-point constant truncated to integer|exponent too large"
}