kauma/vendor/serde_json/tests/ui/unexpected_comma.rs
2024-10-23 10:21:09 +02:00

5 lines
69 B
Rust

use serde_json::json;
fn main() {
json!({ "a" , "b": true });
}