• 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 = "proto3";
9
10package protobuf.kotlin.generator;
11
12option java_package = "com.google.protobuf.kotlin.generator";
13option java_multiple_files = true;
14
15enum NestedEnum {
16  FOO = 0;
17}
18
19message MultipleFilesMessageA {}
20
21message MultipleFilesMessageB {}
22