7be088202b
Fix the bug by sharing the code for generating class name for both message and enum.
11 lines
122 B
Protocol Buffer
11 lines
122 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message NoNamespaceMessage {
|
|
int32 a = 1;
|
|
}
|
|
|
|
enum NoNamespaceEnum {
|
|
VALUE_A = 0;
|
|
VALUE_B = 1;
|
|
}
|