Closed esqp closed 3 months ago
Enums are checked only for those located at the root of the proto file, nested enums in messages are not checked
Example:
// checked enum TYPE { TYPE_UNSPECIFIED = 0; } message Example { string test =1; // not checked enum TYPE { TYPE_UNSPECIFIED = 0; } }
Close? Since PR was merged
Enums are checked only for those located at the root of the proto file, nested enums in messages are not checked
Example: