mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-28 23:02:58 +08:00
12 lines
169 B
Protocol Buffer
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;
|
||
|
}
|
||
|
}
|