File: test_cpp.proto

package info (click to toggle)
upb 0.0.0~git200730-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,696 kB
  • sloc: ansic: 16,828; cpp: 5,098; python: 360; pascal: 160; ruby: 21; sh: 19; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (6)
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;
}