aboutsummaryrefslogtreecommitdiff
path: root/lib/mstch/test/data/nested_iterating.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mstch/test/data/nested_iterating.hpp')
-rw-r--r--lib/mstch/test/data/nested_iterating.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/mstch/test/data/nested_iterating.hpp b/lib/mstch/test/data/nested_iterating.hpp
new file mode 100644
index 0000000..ac2f478
--- /dev/null
+++ b/lib/mstch/test/data/nested_iterating.hpp
@@ -0,0 +1,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"}}
+ }}}
+ }}}
+}; \ No newline at end of file