Skip to content

Commit fbe855b

Browse files
committed
test: fix test case
Issue introduced by https://go-review.googlesource.com/#/c/16920/ . TBR=rsc Change-Id: I2a0e0c81f641f869568230837c566913f6538f37 Reviewed-on: https://go-review.googlesource.com/16990 Run-TryBot: Robert Griesemer <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Robert Griesemer <[email protected]>
1 parent 4d39bb6 commit fbe855b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/fixedbugs/issue11590.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
package p
88

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"
9+
var _ = int8(4) * 300 // ERROR "constant 300 overflows int8" "constant 1200 overflows int8"
10+
var _ = complex64(1) * 1e200 // ERROR "constant 1e\+200 overflows complex64"
11+
var _ = complex128(1) * 1e500 // ERROR "constant 1\.00000e\+500 overflows complex128"

0 commit comments

Comments
 (0)