All Downloads are FREE. Search and download functionalities are using the official Maven repository.

protoc-misc.TypeDuplicates1.proto Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy