Fixed depth limit check by comparing effective depth limits.
[google-protobuf.git] / objectivec / Tests / unittest_import.proto
blobcae71a74e91b3117434f887d7e40032c2c540c2d
1 // Protocol Buffers - Google's data interchange format
2 // Copyright 2008 Google Inc.  All rights reserved.
3 //
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file or at
6 // https://developers.google.com/open-source/licenses/bsd
8 // A proto file which is imported by unittest.proto to test importing.
10 syntax = "proto2";
12 package objc.protobuf.tests.import;
14 // Test public import
15 import public "objectivec/Tests/unittest_import_public.proto";
17 option objc_class_prefix = "Import";
19 message Message {
20   optional int32 d = 1;
23 enum Enum {
24   IMPORT_FOO = 7;
25   IMPORT_BAR = 8;
26   IMPORT_BAZ = 9;
30 // To use an enum in a map, it must has the first value as 0.
31 enum EnumForMap {
32   UNKNOWN = 0;
33   FOO = 1;
34   BAR = 2;