protobuf-c/t/issue389/issue389.proto
2020-05-13 13:20:48 -07:00

13 lines
177 B
Protocol Buffer

syntax = "proto3";
message EnumIntTest {
enum Label {
LABEL_1 = 0;
LABEL_2 = 1;
}
oneof label {
Label label_label = 123;
uint64 label_uint64 = 124;
}
}