YouCompleteMe/cpp/llvm/tools/clang/test/SemaObjCXX/foreach-block.mm
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

15 lines
287 B
Plaintext

// 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}}
}