blob: 1be9224857f0abd4be0b29368adcb03d2dd561f8 [file] [log] [blame]
// 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;
}