aboutsummaryrefslogtreecommitdiff
path: root/lib/mstch/test/data/nested_iterating.hpp
blob: ac2f47805baa70ef88d24b721d0fa8b5f11546cb (plain)
1
2
3
4
5
6
7
8
const auto nested_iterating_data = mstch::map{
  {"inner", mstch::array{mstch::map{
    {"foo", std::string{"foo"}},
    {"inner", mstch::array{mstch::map{
      {"bar", std::string{"bar"}}
    }}}
  }}}
};