pebble/third_party/nanopb/tests/regression/issue_229/multiple_oneof.proto

12 lines
163 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto2";
message MainMessage {
oneof oneof1 {
uint32 oneof1_uint32 = 1;
}
oneof oneof2 {
uint32 oneof2_uint32 = 2;
}
}