aboutsummaryrefslogtreecommitdiff
path: root/lib/mstch/test/data/nesting.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mstch/test/data/nesting.hpp')
-rw-r--r--lib/mstch/test/data/nesting.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/mstch/test/data/nesting.hpp b/lib/mstch/test/data/nesting.hpp
new file mode 100644
index 0000000..7008030
--- /dev/null
+++ b/lib/mstch/test/data/nesting.hpp
@@ -0,0 +1,7 @@
+const auto nesting_data = mstch::map{
+ {"foo", mstch::array{
+ mstch::map{{"a", mstch::map{{"b", 1}}}},
+ mstch::map{{"a", mstch::map{{"b", 2}}}},
+ mstch::map{{"a", mstch::map{{"b", 3}}}}
+ }}
+}; \ No newline at end of file