()
| 2028 | |
| 2029 | #[test] |
| 2030 | fn parse_jsonc_trailing_comma_with_whitespace() { |
| 2031 | let input = "{\n \"a\": 1 ,\n}"; |
| 2032 | let v = parse_jsonc(input); |
| 2033 | assert_eq!(v["a"], 1); |
| 2034 | } |
| 2035 | } |
| 2036 | |
| 2037 | // --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected