pebble/third_party/nanopb/tests/regression/issue_637/oneof.proto

19 lines
192 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
import "other.proto";
message FirstOneof {}
message Bar {
oneof content {
FirstOneof first = 1;
SecondOneof second = 2;
}
}
message Foo {
Bar bar = 1;
}