Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / foreach-block.mm
blob1feb210e1bcb7f6f2a59fa59dd765764485d8a98
1 // RUN: %clang_cc1 -fsyntax-only -verify -fblocks %s
3 int main() {
4 id array;
6     for (int (^b)(void) in array) {
7         if (b() == 10000) {
8             return 1;
9         }
10     }
12     int (^b)(void) in array; // expected-error {{expected ';' at end of declaration}}