We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 586fefb commit c27b023Copy full SHA for c27b023
tests/regression/issue953.rs
@@ -0,0 +1,9 @@
1
+use serde_json::Value;
2
+
3
+#[test]
4
+fn test() {
5
+ let x1 = serde_json::from_str::<Value>("18446744073709551615.");
6
+ assert!(x1.is_err());
7
+ let x2 = serde_json::from_str::<Value>("18446744073709551616.");
8
+ assert!(x2.is_err());
9
+}
0 commit comments