Fix bugs in proto3 mode encoding of submessages (#256)
[apps/agl-service-can-low-level.git] / tests / regression / issue_229 / multiple_oneof.proto
1 syntax = "proto2";
2
3 message MainMessage {
4     oneof oneof1 {
5         uint32 oneof1_uint32 = 1;
6     }
7     oneof oneof2 {
8         uint32 oneof2_uint32 = 2;
9     }
10 }
11