protobuf-c/t/issue251/issue251.proto
2017-02-25 15:52:39 -05:00

12 lines
169 B
Protocol Buffer

message two_oneofs {
oneof first_oneof {
bool a = 10;
bool b = 11;
}
oneof second_oneof {
bool c = 20;
bool d = 21;
}
}