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: liujisi@google.com (Pherl Liu) 9 10syntax = "proto3"; 11 12package protobuf_unittest_import; 13 14option java_package = "com.google.protobuf.test"; 15option csharp_namespace = "Google.Protobuf.TestProtos"; 16 17message PublicImportMessage { 18 int32 e = 1; 19} 20