Home | History | Annotate | Download | only in issue_229
      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 
     12