This commit is contained in:
Looly 2023-09-05 12:28:00 +08:00
parent 645ee387d3
commit 9c51a71e20

View File

@ -0,0 +1,14 @@
package org.dromara.hutool.json;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class Issue3289Test {
@Test
void parseTest() {
Assertions.assertThrows(JSONException.class, () -> {
final String s = "{\"G\":00,[,,[0E5,6E9,6E5,6E9,6E5,6E9,6E5,6E9,6E9,6E5,true,6E5,6E9,6E5,6E9,6956,EE,5E9,6E5,RE,6E9,6E9,6E5,6E9,6E5,6E9,6E5,6E9,6E5,6E962756779,4141697],]}";
JSONUtil.parse(s);
});
}
}