pebble/third_party/nanopb/tests/regression/issue_256/submsg_array.proto

12 lines
219 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
import "nanopb.proto";
message SubMessage {
repeated uint32 rep_uint32 = 1 [(nanopb).max_count = 3];
}
message TestMessage {
SubMessage submsg = 1 [(nanopb).proto3_singular_msgs = true];
}