Skip to content

Commit

Permalink
fix const tesedata data
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamerjackson committed Feb 2, 2021
1 parent cd99385 commit c347963
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/go/types/testdata/const1.src
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,10 @@ const (
_ = assert(float64(smallestFloat32) == smallestFloat32)
_ = assert(float64(smallestFloat32/2) == smallestFloat32/2)
_ = assert(float64(smallestFloat64) == smallestFloat64)
_ = assert(float64(smallestFloat64/2) == 0)

_ = assert(float64(smallestFloat64/2) == smallestFloat64)
_ = assert(float64(smallestFloat64/4) == 0)

)

const (
Expand Down

0 comments on commit c347963

Please sign in to comment.