Sign in
pigweed
/
third_party
/
github
/
nanopb
/
nanopb
/
5a3bd898e492255926333fcc585a618bbfc0e5c3
/
.
/
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
;
}