test.proto:3:9: Expected message name.
时间: 2024-02-02 11:04:58 浏览: 223
这个错误提示是因为在 test.proto 文件的第三行第九个字符位置上,缺少了一个消息类型的名称。在 Protocol Buffers 的语法中,消息类型需要被命名,例如:
```
message Person {
string name = 1;
int32 age = 2;
}
```
请检查你的 test.proto 文件,确保所有的消息类型都被正确地命名了。
阅读全文