reg/vendor/github.com/gogo/protobuf/test/merge/merge.proto
Jess Frazelle 58cebbaa58
switch to new cli package and update generated files and deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-07-15 17:48:35 -04:00

12 lines
177 B
Protocol Buffer

syntax = "proto3";
package merge;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
message A {
B B = 1 [(gogoproto.nullable) = false];
}
message B {
int64 c = 1;
}