github.com/gogo/protobuf@v1.3.2/test/importcustom-issue389/importing/c.proto (about)

     1  syntax = "proto3";
     2  package importing;
     3  
     4  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
     5  import "github.com/gogo/protobuf/test/importcustom-issue389/imported/a.proto";
     6  
     7  option (gogoproto.sizer_all) = true;
     8  option (gogoproto.marshaler_all) = true;
     9  option (gogoproto.unmarshaler_all) = true;
    10  option (gogoproto.testgen_all) = true;
    11  option (gogoproto.populate_all) = true;
    12  option (gogoproto.equal_all) = true;
    13  
    14  message C {
    15      imported.A f2 = 1 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/importcustom-issue389/imported.B"];
    16  }