repeated.proto 154 Bytes
Newer Older
1
syntax="proto2";
zhujiashun's avatar
zhujiashun committed
2 3 4 5 6 7 8
message Dummy {}

message RepeatedMessage {
    repeated int32 ints = 1;
    repeated string strings = 2;
    repeated Dummy msgs = 3;
}