diff --git a/src/strconv/atof.go b/src/strconv/atof.go index 23de70b1c9b6cc..1fd11e677d5e77 100644 --- a/src/strconv/atof.go +++ b/src/strconv/atof.go @@ -678,3 +678,7 @@ func ParseFloat(s string, bitSize int) (float64, error) { } return atof64(s) } + +func ParseComplex(s string, bitSize int) (float64, error) { + return 0,nil +}