Sign in
pigweed
/
third_party
/
github
/
nanopb
/
nanopb
/
ada8903102ca2e2fdf1c04e6f7d9e1a27fdcfe78
/
.
/
tests
/
sort_by_tag
/
sort_by_tag.proto
blob: 95596bf5d0ccd2b0911b51a192966f38d848de2b [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
message
Unsorted
{
uint32
first
=
99
;
oneof oneof
{
uint32
second
=
80
;
uint32
third
=
50
;
}
uint32
last
=
1
;
}
message
Sorted
{
uint32
first
=
99
;
oneof oneof
{
uint32
second
=
80
;
uint32
third
=
50
;
}
uint32
last
=
1
;
}