pebble/third_party/nanopb/tests/regression/issue_249/test.proto

12 lines
186 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
import "nanopb.proto";
message SubMessage {
repeated int32 foo = 1;
}
message MainMessage {
SubMessage submsg = 1 [(nanopb).proto3_singular_msgs = true];
}