Files
python-betterproto/betterproto/tests/inputs/enum_skipped_value/enum_skipped_value.proto
T

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;
}