Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / tests / options / proto3_options.proto
1 syntax = "proto3";
2
3 import "nanopb.proto";
4
5 message Message1
6 {
7     int32 proto3_default = 1;
8     int32 proto3_off = 2 [(nanopb).proto3 = false];
9     int32 proto3_on = 3 [(nanopb).proto3 = true];
10 }
11