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;
}