Added missing test_cpp.proto.

pull/13171/head
Josh Haberman 6 years ago
parent 9f5dec1c05
commit b996854899
  1. 12
      tests/test_cpp.proto

@ -0,0 +1,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;
}
Loading…
Cancel
Save