protobuf-c/t/test-optimized.proto
Robert Edmonds 20d45b1179 t/: Add syntax = "proto2"; where necessary to silence protoc
Since we now require protobuf >= 3.0.0, we don't have to support older
protobuf versions that don't recognize the `syntax` syntax, so we can
put `syntax = "proto2";` on these proto files to silence the protoc
compiler's diagnostic "No syntax specified for the proto file".
2023-07-08 23:19:16 -04:00

16 lines
206 B
Protocol Buffer

syntax = "proto2";
package foo;
option optimize_for = CODE_SIZE;
enum TestEnumLite {
LITE = 0;
LITE1 = 1;
}
message TestMessLite {
required int32 field1 = 1;
required TestEnumLite field2 = 2;
}