minix/external/bsd/llvm/dist/clang/test/SemaObjCXX/foreach-block.mm
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

14 lines
287 B
Text

// RUN: %clang_cc1 -fsyntax-only -verify -fblocks %s
// rdar://8295106
int main() {
id array;
for (int (^b)(void) in array) {
if (b() == 10000) {
return 1;
}
}
int (^b)(void) in array; // expected-error {{expected ';' at end of declaration}}
}