1 2 3 4 5 6 7 8 9
use serde_json_pythonic::Value; #[test] fn test() { let x1 = serde_json_pythonic::from_str::<Value>("18446744073709551615."); assert!(x1.is_err()); let x2 = serde_json_pythonic::from_str::<Value>("18446744073709551616."); assert!(x2.is_err()); }