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}