[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / compiler-rt / test / BlocksRuntime / orbars.c
blobe7c00183cca719a89bb0881fb3a8be3b96dd7887
1 //
2 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3 // See https://llvm.org/LICENSE.txt for license information.
4 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 /*
7 * orbars.c
8 * testObjects
10 * Created by Blaine Garst on 9/17/08.
12 * CONFIG rdar://6276695 error: before ‘|’ token
15 #include <stdio.h>
17 int main(int argc, char *argv[]) {
18 int i = 10;
19 void (^b)(void) = ^(void){ | i | printf("hello world, %d\n", ++i); };
20 printf("%s: success :-(\n", argv[0]);
21 return 0;