mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 22:01:02 +08:00
13 lines
177 B
Protocol Buffer
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;
|
|
}
|
|
}
|