Fix bugs in proto3 mode encoding of submessages (#256)
[apps/agl-service-can-low-level.git] / tests / regression / issue_118 / enumdef.proto
1 syntax = "proto2";
2
3 import 'nanopb.proto';
4
5 enum MyEnum {
6         option (nanopb_enumopt).long_names = false;
7         FOOBAR = 1;
8 }