The compiler constant expression
math.SmallestNonzeroFloat64 / 2
gets printed as 5e-324 (program), but the exact computation of math.SmallestNonzeroFloat64 / 2 using math/big arithmetic followed by rounding results in 0 (program).
There's either an error with the rounding or constant arithmetic somewhere, or a mistake in my assumptions.
This affects a test case in types2/testdata/const1.src.