Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / tests / regression / issue_242 / zero_value.proto
1 syntax = "proto2";
2 import "nanopb.proto";
3
4 message Extendable {
5     extensions 10 to 100;
6 }
7
8 extend Extendable {
9     optional int32 opt_int32 = 11;
10 }
11
12 message PointerMessage {
13     optional int32 opt_int32 = 11 [(nanopb).type = FT_POINTER];
14 }
15