• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8syntax = "proto2";
9
10package google.protobuf.python.internal.import_test_package;
11
12import "google/protobuf/internal/import_test_package/inner.proto";
13
14message Outer {
15  optional Inner inner = 1;
16  optional ImportPublicNestedMessage import_public_nested = 2;
17}
18