aboutsummaryrefslogtreecommitdiffstats
path: root/Software/External Repositories/Protobuf/protobuf-c-master/t/issue251/issue251.proto
blob: a451894ad4946fffbbd5713af0e15a2200fd1a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
message two_oneofs {
    oneof first_oneof {
        bool a = 10;
        bool b = 11;
    }

    oneof second_oneof {
        bool c = 20;
        bool d = 21;
    }
}