reproducing

This commit is contained in:
talksik
2025-03-22 22:24:00 -07:00
commit 34eb1939e1
6 changed files with 535 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
syntax="proto3";
package hello;
message HelloMessage {
string message = 1;
message First {
string test = 1;
}
message Second {
string test = 1;
}
oneof data {
First first = 2;
Second second = 3;
}
}