Add test for #77, integer overflow when parsing JSON scientific notation number.

This commit is contained in:
ProtectedMode 2015-05-21 09:59:14 +02:00
parent 745a95b607
commit 2e8ef0f768

View File

@ -703,6 +703,7 @@ fn test_parse_number_errors() {
("1e+", Error::SyntaxError(ErrorCode::InvalidNumber, 1, 3)),
("1a", Error::SyntaxError(ErrorCode::TrailingCharacters, 1, 2)),
("777777777777777777777777777", Error::SyntaxError(ErrorCode::InvalidNumber, 1, 20)),
("1e777777777777777777777777777", Error::SyntaxError(ErrorCode::InvalidNumber, 1, 22)),
]);
}