mirror of
https://github.com/nlohmann/json.git
synced 2025-07-22 15:21:52 +03:00
Merge branch 'feature/issue329' into develop
This commit is contained in:
@ -489,4 +489,10 @@ TEST_CASE("regression tests")
|
||||
j["/this/that/2"_json_pointer] = 27;
|
||||
CHECK(j == json({{"this", {{"that", {nullptr, nullptr, 27}}}}}));
|
||||
}
|
||||
|
||||
SECTION("issue #329 - serialized value not always can be parsed")
|
||||
{
|
||||
json j = json::parse("22e2222");
|
||||
CHECK(j == json());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user