unittest_issue6936_c.proto 359 B

12345678910111213141516
  1. syntax = "proto3";
  2. import "unittest_issue6936_a.proto";
  3. import "unittest_issue6936_b.proto";
  4. package unittest_issues;
  5. option csharp_namespace = "UnitTest.Issues.TestProtos";
  6. // This file is used as part of a unit test for issue 6936
  7. // We don't need to use it, we just have to load it at runtime
  8. message Bar {
  9. option (opt) = "bar";
  10. Foo foo = 1;
  11. }