aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/strconv/atof_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/strconv/atof_test.go')
-rw-r--r--libgo/go/strconv/atof_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/libgo/go/strconv/atof_test.go b/libgo/go/strconv/atof_test.go
index b4f3a6f..ba493321 100644
--- a/libgo/go/strconv/atof_test.go
+++ b/libgo/go/strconv/atof_test.go
@@ -110,6 +110,7 @@ var atoftests = []atofTest{
{"1e", "0", ErrSyntax},
{"1e-", "0", ErrSyntax},
{".e-1", "0", ErrSyntax},
+ {"1\x00.2", "0", ErrSyntax},
// http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
{"2.2250738585072012e-308", "2.2250738585072014e-308", nil},