summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/rewrite-trivial-constructor.mm
blob: e343a383102ab6db48671ca099c56d33d9587489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -x objective-c++ -fblocks -o - %s
// radar 7537770

typedef struct {
        int a;
        int b;
} s;

extern void CFBasicHashApply(int (^block)(s)) {
        int used, cnt;
    for (int idx = 0; 0 < used && idx < cnt; idx++) {
                s bkt;
        if (0 < bkt.a) {
            if (!block(bkt)) {
                return;
            }
            used--;
        }
    }
}