aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/protos/unittest_issues.proto
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/protos/unittest_issues.proto')
-rw-r--r--csharp/protos/unittest_issues.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/csharp/protos/unittest_issues.proto b/csharp/protos/unittest_issues.proto
index 6c9f7634..332c81dc 100644
--- a/csharp/protos/unittest_issues.proto
+++ b/csharp/protos/unittest_issues.proto
@@ -124,3 +124,18 @@ message TestJsonName {
string description = 2 [json_name = "desc"];
string guid = 3 [json_name = "exid"];
}
+
+// Issue 3200: When merging two messages which use the same
+// oneof case, which is itself a message type, the submessages should
+// be merged.
+message OneofMerging {
+ message Nested {
+ int32 x = 1;
+ int32 y = 2;
+ }
+
+ oneof value {
+ string text = 1;
+ Nested nested = 2;
+ }
+} \ No newline at end of file