xref: /aosp_15_r20/external/clang/test/SemaObjCXX/foreach-block.mm (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -fsyntax-only -verify -fblocks %s
2// rdar://8295106
3
4int main() {
5id array;
6
7    for (int (^b)(void) in array) {
8        if (b() == 10000) {
9            return 1;
10        }
11    }
12
13    int (^b)(void) in array; // expected-error {{expected ';' at end of declaration}}
14}
15