summaryrefslogtreecommitdiffstats
path: root/tests/inputs/fixed/fixed.proto
blob: 0f0ffb4ef19eb0919ff3a2a73f46c40855cdd718 (plain)
1
2
3
4
5
6
7
8
9
10
syntax = "proto3";

package fixed;

message Test {
  fixed32 foo = 1;
  sfixed32 bar = 2;
  fixed64 baz = 3;
  sfixed64 qux = 4;
}