mstch/test/data/nesting_same_name.hpp

8 lines
182 B
C++
Raw Normal View History

2015-04-16 19:05:59 +00:00
const auto nesting_same_name_data = mstch::map{
2015-04-09 18:41:27 +00:00
{"items", mstch::array{
2015-04-16 19:05:59 +00:00
mstch::map{
2015-04-09 18:41:27 +00:00
{"name", std::string{"name"}},
{"items", mstch::array{1, 2, 3, 4}}
}
}}
2015-04-16 19:05:59 +00:00
};