blob: 91bd0c83b31b31e77f31c467ebe8ee33d76fe21c (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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}}
}
|