• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Protocol Buffers - Google's data interchange format
2// Copyright 2016 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
7
8syntax = "proto2";
9
10package objc.protobuf.tests.chain;
11
12import "objectivec/Tests/unittest.proto";
13
14option objc_class_prefix = "Chain";
15
16// The Root for this file should end up adding the local extension and merging
17// in the extensions from unittest.proto's Root.
18
19message CMessage {
20  optional int32 my_field = 1;
21}
22
23extend objc.protobuf.tests.TestAllExtensions {
24  optional int32 chain_c_extension = 10003;
25}
26