https://github.com/boostorg/json/issues/45
| 1223 | |
| 1224 | // https://github.com/boostorg/json/issues/45 |
| 1225 | void |
| 1226 | testIssue45() |
| 1227 | { |
| 1228 | struct T |
| 1229 | { |
| 1230 | value jv; |
| 1231 | |
| 1232 | T(value jv_) |
| 1233 | : jv(jv_) |
| 1234 | { |
| 1235 | } |
| 1236 | }; |
| 1237 | |
| 1238 | auto const jv = parse("[]"); |
| 1239 | auto const t = T{jv}; |
| 1240 | BOOST_TEST(serialize(t.jv) == "[]"); |
| 1241 | } |
| 1242 | |
| 1243 | void |
| 1244 | testIssue876() |
nothing calls this directly
no test coverage detected