Internal changes
[google-protobuf.git] / objectivec / Tests / unittest_extension_chain_f.proto
blob2d2941f49c9240daf5653fcd147d5aac053e8856
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
8 syntax = "proto2";
10 package objc.protobuf.tests.chain;
12 import "objectivec/Tests/unittest_extension_chain_g.proto";
14 option objc_class_prefix = "Chain";
16 // The Root for this file should just be merging in the extensions from C's
17 // Root (because G doesn't define anything itself).
19 // The generated source will also have to directly import C's .h file so it can
20 // compile the reference to C's Root class.
22 message FMessage {
23   optional GMessage g = 1;