Home | History | Annotate | Download | only in issue_256
      1 syntax = "proto3";
      2 import "nanopb.proto";
      3 
      4 message SubMessage {
      5     repeated uint32 rep_uint32 = 1 [(nanopb).max_count = 3];
      6 }
      7 
      8 message TestMessage {
      9     SubMessage submsg = 1;
     10 }
     11 
     12