We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d39bb6 commit fbe855bCopy full SHA for fbe855b
test/fixedbugs/issue11590.go
@@ -6,6 +6,6 @@
6
7
package p
8
9
-var _ = int8(4) * 300 // ERROR "constant overflows int8"
10
-var _ = complex64(1) * 1e200 // ERROR "constant overflows complex64"
11
-var _ = complex128(1) * 1e500 // ERROR "constant overflows complex128"
+var _ = int8(4) * 300 // ERROR "constant 300 overflows int8" "constant 1200 overflows int8"
+var _ = complex64(1) * 1e200 // ERROR "constant 1e\+200 overflows complex64"
+var _ = complex128(1) * 1e500 // ERROR "constant 1\.00000e\+500 overflows complex128"
0 commit comments