github.com/gogo/protobuf@v1.3.2/test/merge/merge.proto (about)

     1  syntax = "proto3";
     2  package merge;
     3  
     4  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
     5  
     6  message A {
     7    B B = 1 [(gogoproto.nullable) = false];
     8    repeated C c = 2 [(gogoproto.nullable) = false];
     9  }
    10  
    11  message B {
    12    int64 c = 1;
    13  }
    14  
    15  message C {
    16    int64 d = 1;
    17  }