blob: af976adab00c47c2db7e55cc2c70fbb9a39f4d35 [file] [log] [blame]
syntax = "proto3";
message Message {
int32 value = 1;
}
message OneofContainer {
oneof some_oneof {
string string_in_oneof = 1;
Message message_in_oneof = 2;
}
string regular_field = 3;
}