blob: 29dee5fe085fb8e37c7363522332c5cb4cdabc85 [file] [log] [blame]
/* Test generation of enums with aliases */
syntax = "proto3";
enum EnumWithAliases {
option allow_alias = true;
First = 0;
Second = 1;
AlsoSecond = 1;
}