• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto2";
2
3package kotlinx.serialization.protobuf.schema.generator;
4
5// serial name 'kotlinx.serialization.protobuf.schema.GenerationTest.EnumWithProtoNumber'
6enum EnumWithProtoNumber {
7  ZERO = 0;
8  THREE = 3;
9  TWO = 2;
10  FIVE = 5;
11}
12