forked from protocolbuffers/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd11d54
commit 145033c
Showing
12 changed files
with
95 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
syntax = "proto3"; | ||
|
||
package unittest_issues; | ||
|
||
option csharp_namespace = "UnitTest.Issues.TestProtos"; | ||
|
||
// This file is used as part of a unit test for issue 6936 | ||
// We don't need to use it, we just have to import it in both | ||
// "extensions_issue6936_b.proto" and "extensions_issue6936_c.proto" | ||
|
||
import "google/protobuf/descriptor.proto"; | ||
|
||
extend google.protobuf.MessageOptions { | ||
string opt = 50000; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
syntax = "proto3"; | ||
|
||
import "extensions_issue6936_a.proto"; | ||
|
||
package unittest_issues; | ||
|
||
option csharp_namespace = "UnitTest.Issues.TestProtos"; | ||
|
||
// This file is used as part of a unit test for issue 6936 | ||
// We don't need to use it, we just have to import it in "extensions_issue6936_c.proto" | ||
|
||
message Foo { | ||
option (opt) = "foo"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
syntax = "proto3"; | ||
|
||
import "extensions_issue6936_a.proto"; | ||
import "extensions_issue6936_b.proto"; | ||
|
||
package unittest_issues; | ||
|
||
option csharp_namespace = "UnitTest.Issues.TestProtos"; | ||
|
||
// This file is used as part of a unit test for issue 6936 | ||
// We don't need to use it, we just have to load it at runtime | ||
|
||
message Bar { | ||
option (opt) = "bar"; | ||
Foo foo = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.