Remove message_test_wrapper for python's message_test.
[google-protobuf.git] / objectivec / Tests / unittest_extension_chain_c.proto
blob5532a14247ebbd5f59541bb98ebe6e3fe818749f
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.proto";
14 option objc_class_prefix = "Chain";
16 // The Root for this file should end up adding the local extension and merging
17 // in the extensions from unittest.proto's Root.
19 message CMessage {
20   optional int32 my_field = 1;
23 extend objc.protobuf.tests.TestAllExtensions {
24   optional int32 chain_c_extension = 10003;