protoc-misc.TypeDuplicates1.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobufel-test-protos2 Show documentation
Show all versions of protobufel-test-protos2 Show documentation
Shared Test Resources - test .proto files used by protobufel-grammar
The newest version!
package test.type.duplicates1;
message Message1 {
repeated string some_field1 = 1;
optional Type1 field1 = 2;
repeated Type1 field2 = 3;
message Type2 {
optional bool f1 = 1;
}
enum Type2 {
VALUE1 = 1;
VALUE2 = 2;
}
}
message Type1 {
optional bool f1 = 1;
}
enum Type1 {
VALUE1 = 1;
VALUE2 = 2;
}