mirror of
https://github.com/nlohmann/json.git
synced 2026-02-02 21:42:08 +00:00
fixed a bug that was found in the discussion of #274
This commit is contained in:
@@ -10359,6 +10359,14 @@ TEST_CASE("parser class")
|
||||
CHECK(j_empty_array == json());
|
||||
}
|
||||
}
|
||||
|
||||
SECTION("copy constructor")
|
||||
{
|
||||
json::string_t* s = new json::string_t("[1,2,3,4]");
|
||||
json::parser p(*s);
|
||||
delete s;
|
||||
CHECK(p.parse() == json({1, 2, 3, 4}));
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("README", "[hide]")
|
||||
|
||||
Reference in New Issue
Block a user