Sha256: b2cddc761f5ca6639900c173765a8a5868528a896924e5e925db2696469208f7
Contents?: true
Size: 236 Bytes
Versions: 31
Compression:
Stored size: 236 Bytes
Contents
use serde_json::Value; #[test] fn test() { let x1 = serde_json::from_str::<Value>("18446744073709551615."); assert!(x1.is_err()); let x2 = serde_json::from_str::<Value>("18446744073709551616."); assert!(x2.is_err()); }
Version data entries
31 entries across 31 versions & 1 rubygems