Home | History | Annotate | Download | only in issue_259
      1 syntax = "proto2";
      2 import 'nanopb.proto';
      3 
      4 message SubMessage {
      5     optional int32 foo = 1 [(nanopb).type = FT_CALLBACK];
      6 }
      7 
      8 message MainMessage {
      9     optional SubMessage bar = 1 [(nanopb).type = FT_POINTER];
     10 }
     11 
     12