aboutsummaryrefslogtreecommitdiff
path: root/tests/regression/issue_647/repro.proto
blob: 1fe77779cc80cb2e9aa11291d609c8135713390a (plain)
1
2
3
4
5
6
7
8
9
10
syntax = "proto3";

import "nanopb.proto";

message Repro {
  oneof value_type {
    bool boolean_value = 1;
    bytes bytes_value = 5 [(nanopb).type = FT_POINTER];
  }
}