issue_535.proto 164 B

12345678910
  1. /* Test generation of enums with aliases */
  2. syntax = "proto3";
  3. enum EnumWithAliases {
  4. option allow_alias = true;
  5. First = 0;
  6. Second = 1;
  7. AlsoSecond = 1;
  8. }