summaryrefslogtreecommitdiffstats
path: root/tests/inputs/fixed/fixed.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inputs/fixed/fixed.proto')
-rw-r--r--tests/inputs/fixed/fixed.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/inputs/fixed/fixed.proto b/tests/inputs/fixed/fixed.proto
new file mode 100644
index 0000000..0f0ffb4
--- /dev/null
+++ b/tests/inputs/fixed/fixed.proto
@@ -0,0 +1,10 @@
+syntax = "proto3";
+
+package fixed;
+
+message Test {
+ fixed32 foo = 1;
+ sfixed32 bar = 2;
+ fixed64 baz = 3;
+ sfixed64 qux = 4;
+}