summaryrefslogtreecommitdiffstats
path: root/tests/inputs/repeatedpacked/repeatedpacked.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inputs/repeatedpacked/repeatedpacked.proto')
-rw-r--r--tests/inputs/repeatedpacked/repeatedpacked.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/inputs/repeatedpacked/repeatedpacked.proto b/tests/inputs/repeatedpacked/repeatedpacked.proto
new file mode 100644
index 0000000..a037d1b
--- /dev/null
+++ b/tests/inputs/repeatedpacked/repeatedpacked.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package repeatedpacked;
+
+message Test {
+ repeated int32 counts = 1;
+ repeated sint64 signed = 2;
+ repeated double fixed = 3;
+}