xref: /llvm-project/compiler-rt/test/BlocksRuntime/orbars.c (revision 2946cd701067404b99c39fb29dc9c74bd7193eb3)
18c1441f8SAlexey Samsonov //
2*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
4*2946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
58c1441f8SAlexey Samsonov 
68c1441f8SAlexey Samsonov /*
78c1441f8SAlexey Samsonov  *  orbars.c
88c1441f8SAlexey Samsonov  *  testObjects
98c1441f8SAlexey Samsonov  *
108c1441f8SAlexey Samsonov  *  Created by Blaine Garst on 9/17/08.
118c1441f8SAlexey Samsonov  *
128c1441f8SAlexey Samsonov  *  CONFIG rdar://6276695 error: before ‘|’ token
138c1441f8SAlexey Samsonov  */
148c1441f8SAlexey Samsonov 
158c1441f8SAlexey Samsonov #include <stdio.h>
168c1441f8SAlexey Samsonov 
main(int argc,char * argv[])178c1441f8SAlexey Samsonov int main(int argc, char *argv[]) {
188c1441f8SAlexey Samsonov     int i = 10;
198c1441f8SAlexey Samsonov     void (^b)(void) = ^(void){ | i | printf("hello world, %d\n", ++i); };
208c1441f8SAlexey Samsonov     printf("%s: success :-(\n", argv[0]);
218c1441f8SAlexey Samsonov     return 0;
228c1441f8SAlexey Samsonov }
23