update code
This commit is contained in:
16
protobuf/php/tests/proto/test_no_namespace.proto
Normal file
16
protobuf/php/tests/proto/test_no_namespace.proto
Normal file
@@ -0,0 +1,16 @@
|
||||
syntax = "proto3";
|
||||
|
||||
message NoNamespaceMessage {
|
||||
int32 a = 1;
|
||||
|
||||
enum NestedEnum {
|
||||
ZERO = 0;
|
||||
}
|
||||
NestedEnum b = 2;
|
||||
repeated NestedEnum c = 3;
|
||||
}
|
||||
|
||||
enum NoNamespaceEnum {
|
||||
VALUE_A = 0;
|
||||
VALUE_B = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user