xref: /aosp_15_r20/external/compiler-rt/test/BlocksRuntime/macro.c (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1 //
2 //                     The LLVM Compiler Infrastructure
3 //
4 // This file is distributed under the University of Illinois Open Source
5 // License. See LICENSE.TXT for details.
6 
7 // CONFIG open rdar://6718399
8 #include <Block.h>
9 
foo()10 void foo() {
11     void (^bbb)(void)  = Block_copy(^ {
12         int j, cnt;
13     });
14 }
15