13 lines
126 B
Protocol Buffer
13 lines
126 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
option optimize_for = LITE_RUNTIME;
|
|
|
|
package TestRepeated;
|
|
|
|
message Test {
|
|
|
|
repeated int32 i = 1;
|
|
|
|
}
|
|
|