f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
21 lines
470 B
Text
21 lines
470 B
Text
// 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--;
|
|
}
|
|
}
|
|
}
|
|
|