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