2022-03-03 13:34:53 +00:00

19 lines
220 B
Protocol Buffer

syntax = "proto3";
package oneof;
message Test {
oneof foo {
int32 pitied = 1;
string pitier = 2;
}
int32 just_a_regular_field = 3;
oneof bar {
int32 drinks = 11;
string bar_name = 12;
}
}