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 12import "csharp/protos/unittest_issue6936_a.proto"; 13import "csharp/protos/unittest_issue6936_b.proto"; 14 15option csharp_namespace = "UnitTest.Issues.TestProtos"; 16 17// This file is used as part of a unit test for issue 6936 18// We don't need to use it, we just have to load it at runtime 19 20message Bar { 21 option (opt) = "bar"; 22 23 Foo foo = 1; 24} 25