| // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
| // for details. All rights reserved. Use of this source code is governed by a | |
| // BSD-style license that can be found in the LICENSE file. | |
| syntax = "proto2"; | |
| package enum.name; | |
| // Enum with non-standard value-names. | |
| enum A { | |
| _x = 0; | |
| _Y = 1; | |
| Z_ = 2; | |
| A_A = 4; | |
| b_b = 5; | |
| camelCase = 6; | |
| } | |
| message AMessage { | |
| optional A a = 1; | |
| } |