xref: /aosp_15_r20/external/golang-protobuf/internal/testprotos/enums/enums.proto (revision 1c12ee1efe575feb122dbf939ff15148a3b3e8f2)
1// Copyright 2021 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5syntax = "proto2";
6
7package goproto.proto.enums;
8
9option go_package = "google.golang.org/protobuf/internal/testprotos/enums";
10
11enum Enum {
12  DEFAULT = 1337;
13  ZERO = 0;
14  ONE = 1;
15  ELEVENT = 11;
16  SEVENTEEN = 17;
17  THIRTYSEVEN = 37;
18  SIXTYSEVEN = 67;
19  NEGATIVE = -1;
20}
21