blob: 1bdffec8927a20880b97f154f2c3dba3fa194cba [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto3";
package a;
enum One {
ONE_UNSPECIFIED = 0;
ONE_ONE = 1;
ONE_TWO = 2;
}
enum Two {
TWO_UNSPECIFIED = 0;
TWO_ONE = 1;
TWO_TWO = 2;
}
message Three {
message Four {
enum Five {
FIVE_UNSPECIFIED = 0;
FIVE_ONE = 1;
FIVE_TWO = 2;
}
enum Six {
SIX_UNSPECIFIED = 0;
SIX_ONE = 1;
SIX_TWO = 2;
}
}
enum Seven {
SEVEN_UNSPECIFIED = 0;
SEVEN_ONE = 1;
SEVEN_TWO = 2;
}
enum Eight {
EIGHT_UNSPECIFIED = 0;
EIGHT_ONE = 1;
EIGHT_TWO = 2;
}
}
enum Nine {
NINE_UNSPECIFIED = 0;
NINE_ONE = 1;
NINE_TWO = 2;
}
enum Ten {
option allow_alias = true;
TEN_UNSPECIFIED = 0;
TEN_ONE = 1;
TEN_TWO = 1;
}
enum Eleven {
option allow_alias = true;
ELEVEN_UNSPECIFIED = 0;
ELEVEN_ONE = 1;
ELEVEN_TWO = 1;
}