osrm-backend/test/t/nested/nested_testcase.proto
Michael Krasnyk 68019a1fb2 Squashed 'third_party/protozero/' content from commit d5d8debf1
git-subtree-dir: third_party/protozero
git-subtree-split: d5d8debf1b17c6bb652395957b76cde7787e5377
2018-04-19 22:03:49 +03:00

21 lines
277 B
Protocol Buffer

option optimize_for = LITE_RUNTIME;
package TestNested;
message SubSub {
optional string s = 1;
optional int32 i = 2;
}
message Sub {
optional SubSub subsub = 1;
optional int32 i = 2;
}
message Test {
optional Sub sub = 1;
optional int32 i = 2;
}