mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2025-01-04 19:25:29 +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;
|
||
|
}
|
||
|
}
|