You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
470 B

// 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--;
}
}
}