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 7 8// Author: Feng Xiao (xiaofeng@google.com) 9// 10// Test that custom options defined in a proto file's dependencies are properly 11// initialized. 12syntax = "proto2"; 13 14package protobuf_unittest; 15 16import "google/protobuf/unittest_custom_options.proto"; 17 18 19message TestMessageWithCustomOptionsContainer { 20 optional TestMessageWithCustomOptions field = 1; 21} 22