blob: 7f7baafe73567ecebce64ea9144ef87be16fe4d5 [file] [log] [blame]
syntax = "proto3";
import "other.proto";
message FirstOneof {}
message Bar {
oneof content {
FirstOneof first = 1;
SecondOneof second = 2; // unknown size if no options are considered
}
}
message Foo {
AnotherList foo = 1; // again, unknown size
Bar bar = 2; // no duplicate size_union shall be generated anymore
}