1syntax = "proto3"; 2 3package unittest_issues; 4 5option csharp_namespace = "UnitTest.Issues.TestProtos"; 6 7// This file is used as part of a unit test for issue 6936 8// We don't need to use it, we just have to import it in both 9// "extensions_issue6936_b.proto" and "extensions_issue6936_c.proto" 10 11import "google/protobuf/descriptor.proto"; 12 13extend google.protobuf.MessageOptions { 14 string opt = 50000; 15}