1
0
Fork 0
python-aristaproto/tests/inputs/oneof_empty/oneof_empty.proto

18 lines
233 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package oneof_empty;
message Nothing {}
message MaybeNothing {
string sometimes = 42;
}
message Test {
oneof empty {
Nothing nothing = 1;
MaybeNothing maybe1 = 2;
MaybeNothing maybe2 = 3;
}
}