13 lines
269 B
Text
13 lines
269 B
Text
// RUN: %clang_cc1 -fsyntax-only -verify -fblocks %s
|
|
|
|
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}}
|
|
}
|