• 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 unittest_issues;
11
12option csharp_namespace = "UnitTest.Issues.TestProtos";
13
14// This file is used as part of a unit test for issue 6936
15// We don't need to use it, we just have to import it in both
16// "extensions_issue6936_b.proto" and "extensions_issue6936_c.proto"
17
18import "google/protobuf/descriptor.proto";
19
20extend google.protobuf.MessageOptions {
21  string opt = 50000;
22}
23