reproducing
This commit is contained in:
+18
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user