Fix bugs in proto3 mode encoding of submessages (#256)
[apps/agl-service-can-low-level.git] / tests / regression / issue_249 / test.proto
1 syntax = "proto3";
2
3 message SubMessage {
4     repeated int32 foo = 1;
5 }
6
7 message MainMessage {
8     SubMessage submsg = 1;
9 }
10