While compiling the proto file, I'm getting '"int" is not defined'.
'test.proto' file
syntax = "proto3";
package test;
option go_package = "/;test";
message User {
string FirstName = 1;
string LastName = 2;
string Address = 3;
int Contact = 4;
int Age = 5;
}
Output:
test.proto:11:5: "int" is not defined.