シンプルな .proto ファイルがあり、そこから Java クラスを生成します。proto ファイルは次のようになります。
message Address {
string city = 1;
string country = 2;
}
message PersonalInfo {
string name = 1;
repeated Address adresses = 2;
}
エラーは次のとおりです。
error: incompatible types: com.google.protobuf.GeneratedMessageV3.BuilderParent cannot be converted to com.google.protobuf.AbstractMessage.BuilderParent
getParentForChildren(),
^
3.1.0
クラスを生成し、Java ソースをビルドするために使用しています。何か設定が間違っているのでしょうか、proto ファイルが間違っているのでしょうか、それとも proto のバグですか?