Fix name to fit rename of git repository.
[apps/low-level-can-service.git] / 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