Sign in
pigweed
/
third_party
/
github
/
protocolbuffers
/
protobuf
/
6e9db7dafc19fd26cb6cb44523c8fe65bc3c2597
/
.
/
tests
/
test_cpp.proto
blob: f890350ece14d023762795a4d3f2a0999abcfb92 [
file
]
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
;
}