...

Text file src/github.com/gogo/protobuf/test/importcustom-issue389/importing/c.proto

Documentation: github.com/gogo/protobuf/test/importcustom-issue389/importing

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

View as plain text