summaryrefslogtreecommitdiffstats
path: root/tests/inputs/int32/int32.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inputs/int32/int32.proto')
-rw-r--r--tests/inputs/int32/int32.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/inputs/int32/int32.proto b/tests/inputs/int32/int32.proto
new file mode 100644
index 0000000..4721c23
--- /dev/null
+++ b/tests/inputs/int32/int32.proto
@@ -0,0 +1,10 @@
+syntax = "proto3";
+
+package int32;
+
+// Some documentation about the Test message.
+message Test {
+ // Some documentation about the count.
+ int32 positive = 1;
+ int32 negative = 2;
+}