diff options
Diffstat (limited to '')
-rw-r--r-- | tests/inputs/map/map.proto | 7 |
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; +} |