protobuf-c/t/issue389/issue389.proto

13 lines
177 B
Protocol Buffer
Raw Normal View History

2020-05-13 11:31:16 -07:00
syntax = "proto3";
message EnumIntTest {
enum Label {
LABEL_1 = 0;
LABEL_2 = 1;
}
oneof label {
Label label_label = 123;
uint64 label_uint64 = 124;
}
}