diff --git a/src/go/types/testdata/const1.src b/src/go/types/testdata/const1.src index 56b6bd4ca55e75..3a00022f608dbe 100644 --- a/src/go/types/testdata/const1.src +++ b/src/go/types/testdata/const1.src @@ -281,9 +281,9 @@ const ( _ = assert(float64(smallestFloat32) == smallestFloat32) _ = assert(float64(smallestFloat32/2) == smallestFloat32/2) _ = assert(float64(smallestFloat64) == smallestFloat64) - // TODO(gri) With the change to the declaration of smallestFloat64 - // this now fails to be true. See issue #44058. - // _ = assert(float64(smallestFloat64/2) == 0) + + _ = assert(float64(smallestFloat64/2) == smallestFloat64) + _ = assert(float64(smallestFloat64/4) == 0) ) const (