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: kenton@google.com (Kenton Varda) 9// Based on original Protocol Buffers design by 10// Sanjay Ghemawat, Jeff Dean, and others. 11// 12// A proto file we will use for unit testing. 13// 14// LINT: ALLOW_GROUPS, LEGACY_NAMES 15 16// This file is part of the unit test for issue #6822. It is 17// generated with protoc from version 3.10.1. 18 19syntax = "proto3"; 20 21// Import the proto file containing the extension. We don't use it, 22// but the import is what caused the issue. 23import "csharp/protos/old_extensions2.proto"; 24 25option csharp_namespace = "Google.Protobuf.TestProtos.OldGenerator"; 26 27// We don't use this message other than to get its descriptor. 28message TestMessage {} 29