reg/vendor/github.com/gogo/protobuf/test/issue322/issue322.proto
Jess Frazelle 8e5eba8735
switch to dep
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2017-12-11 14:50:55 -05:00

15 lines
328 B
Protocol Buffer

syntax = "proto2";
package test;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
option (gogoproto.gostring_all) = true;
option (gogoproto.populate_all) = true;
option (gogoproto.equal_all) = true;
option (gogoproto.testgen_all) = true;
message OneofTest {
oneof union {
int32 i = 1 [default = 4];
}
}