mirror of
https://github.com/google/pebble.git
synced 2025-03-21 11:21:21 +00:00
10 lines
164 B
Protocol Buffer
10 lines
164 B
Protocol Buffer
/* Test generation of enums with aliases */
|
|
|
|
syntax = "proto3";
|
|
|
|
enum EnumWithAliases {
|
|
option allow_alias = true;
|
|
First = 0;
|
|
Second = 1;
|
|
AlsoSecond = 1;
|
|
}
|