What version of Go are you using (go version)?
play.golang.org
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
play.golang.org
What did you do?
https://play.golang.org/p/Ou3piPGDOAF
package main
import (
"fmt"
"math/big"
)
func main() {
flt := &big.Float{}
flt.SetPrec(big.MaxPrec) // Remove this and it works
flt.SetString("0x1.5")
fmt.Printf("%v\n", flt)
}
What did you expect to see?
What did you see instead?
%!v(PANIC=Format method: underflow)