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.
15 lines
287 B
15 lines
287 B
4 months ago
|
// 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}}
|
||
|
}
|