aboutsummaryrefslogtreecommitdiff
path: root/tests/regression/issue_242/zero_value.proto
blob: 020a39a56e5e5fca5287372487b6188df411d37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto2";
import "nanopb.proto";

message Extendable {
    extensions 10 to 100;
}

extend Extendable {
    optional int32 opt_int32 = 11;
}

message PointerMessage {
    optional int32 opt_int32 = 11 [(nanopb).type = FT_POINTER];
}