summaryrefslogtreecommitdiffstats
path: root/tests/inputs/map/map.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inputs/map/map.proto')
-rw-r--r--tests/inputs/map/map.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/inputs/map/map.proto b/tests/inputs/map/map.proto
new file mode 100644
index 0000000..ecef3cc
--- /dev/null
+++ b/tests/inputs/map/map.proto
@@ -0,0 +1,7 @@
+syntax = "proto3";
+
+package map;
+
+message Test {
+ map<string, int32> counts = 1;
+}