oden/third-party/vendor/serde_json/tests/ui/missing_comma.rs
2024-03-08 11:03:01 -08:00

5 lines
69 B
Rust

use serde_json::json;
fn main() {
json!({ "1": "" "2": "" });
}