Skip to content

Commit c347963

Browse files
fix const tesedata data
1 parent cd99385 commit c347963

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/go/types/testdata/const1.src

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,10 @@ const (
271271
_ = assert(float64(smallestFloat32) == smallestFloat32)
272272
_ = assert(float64(smallestFloat32/2) == smallestFloat32/2)
273273
_ = assert(float64(smallestFloat64) == smallestFloat64)
274-
_ = assert(float64(smallestFloat64/2) == 0)
274+
275+
_ = assert(float64(smallestFloat64/2) == smallestFloat64)
276+
_ = assert(float64(smallestFloat64/4) == 0)
277+
275278
)
276279

277280
const (

0 commit comments

Comments
 (0)