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
10 * Created by Blaine Garst on 9/17/08.
12 * CONFIG rdar://6276695 error: before ‘|’ token
17 int main(int argc
, char *argv
[]) {
19 void (^b
)(void) = ^(void){ | i
| printf("hello world, %d\n", ++i
); };
20 printf("%s: success :-(\n", argv
[0]);