Files
python-betterproto/betterproto/tests/inputs/enum_skipped_value/enum_skipped_value.proto
2020-06-24 21:55:31 +02:00

13 lines
145 B
Protocol Buffer

syntax = "proto3";
message Test {
enum MyEnum {
ZERO = 0;
ONE = 1;
// TWO = 2;
THREE = 3;
FOUR = 4;
}
MyEnum x = 1;
}