Welcome to mirror list, hosted at ThFree Co, Russian Federation.

recursive.proto « recursive_proto « tests - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4eee223e651927ec563d8a2c79af423d7159ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
message SingleRecursion {
  optional SingleRecursion msg = 1;
}

message Recurse1 {
  optional Recurse2 msg = 1;
}

message Recurse2 {
  optional Recurse1 msg = 1;
  optional SingleRecursion msg2 = 2;
}