extensions_c.proto 328 B

1234567891011121314
  1. syntax = "proto3";
  2. import "extensions_a.proto";
  3. import "extensions_b.proto";
  4. option csharp_namespace = "Google.Protobuf.TestProtos.Extensions";
  5. // This file is used as part of a unit test for issue 6936
  6. // We don't need to use it, we just have to load it at runtime
  7. message Bar {
  8. option (opt) = "foo";
  9. Foo foo = 1;
  10. }