summaryrefslogtreecommitdiff
path: root/tests/test_cpp.proto
blob: f890350ece14d023762795a4d3f2a0999abcfb92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto2";

package upb.test;

message TestMessage {
  optional int32 i32 = 1;
  repeated int32 r_i32 = 2;
  optional string str = 3;
  repeated string r_str = 4;
  optional TestMessage msg = 5;
  repeated TestMessage r_msg = 6;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback