diff options
Diffstat (limited to 'tests/inputs/repeated/repeated.proto')
-rw-r--r-- | tests/inputs/repeated/repeated.proto | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/inputs/repeated/repeated.proto b/tests/inputs/repeated/repeated.proto new file mode 100644 index 0000000..4f3c788 --- /dev/null +++ b/tests/inputs/repeated/repeated.proto @@ -0,0 +1,7 @@ +syntax = "proto3"; + +package repeated; + +message Test { + repeated string names = 1; +} |