aboutsummaryrefslogtreecommitdiff
path: root/src/strconv/atof_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/strconv/atof_test.go')
-rw-r--r--src/strconv/atof_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/strconv/atof_test.go b/src/strconv/atof_test.go
index 3c058b9be5..aa587a473c 100644
--- a/src/strconv/atof_test.go
+++ b/src/strconv/atof_test.go
@@ -342,6 +342,9 @@ var atoftests = []atofTest{
{"0x12.345p-_12", "0", ErrSyntax},
{"0x12.345p+1__2", "0", ErrSyntax},
{"0x12.345p+12_", "0", ErrSyntax},
+
+ {"1e100x", "0", ErrSyntax},
+ {"1e1000x", "0", ErrSyntax},
}
var atof32tests = []atofTest{