summaryrefslogtreecommitdiff
path: root/formats/protobuf/jvmTest/resources/EnumWithProtoNumber.proto
diff options
context:
space:
mode:
Diffstat (limited to 'formats/protobuf/jvmTest/resources/EnumWithProtoNumber.proto')
-rw-r--r--formats/protobuf/jvmTest/resources/EnumWithProtoNumber.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/formats/protobuf/jvmTest/resources/EnumWithProtoNumber.proto b/formats/protobuf/jvmTest/resources/EnumWithProtoNumber.proto
new file mode 100644
index 00000000..21528036
--- /dev/null
+++ b/formats/protobuf/jvmTest/resources/EnumWithProtoNumber.proto
@@ -0,0 +1,11 @@
+syntax = "proto2";
+
+package kotlinx.serialization.protobuf.schema.generator;
+
+// serial name 'kotlinx.serialization.protobuf.schema.GenerationTest.EnumWithProtoNumber'
+enum EnumWithProtoNumber {
+ ZERO = 0;
+ THREE = 3;
+ TWO = 2;
+ FIVE = 5;
+}