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