summaryrefslogtreecommitdiff
path: root/tests/projects/c++/protobuf/src/test.proto
blob: 0f580b87a294c151ecf5d7b9f733b9115bfff2aa (plain)
1
2
3
4
5
6
7
8
9
10
syntax = "proto3";
import "subdir/test2.proto";
package test;
message TestCase {
    string name = 4;
}
message Test {
    repeated TestCase case = 1;
    repeated test2.TestCase2 case2 = 2;
}