Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / 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