mstch/test/data/nesting_same_name.h

9 lines
165 B
C
Raw Normal View History

2015-04-10 02:41:27 +08:00
auto data = mstch::object{
{"items", mstch::array{
mstch::object{
{"name", std::string{"name"}},
{"items", mstch::array{1, 2, 3, 4}}
}
}}
};