1*7c3d14c8STreehugger Robot // 2*7c3d14c8STreehugger Robot // The LLVM Compiler Infrastructure 3*7c3d14c8STreehugger Robot // 4*7c3d14c8STreehugger Robot // This file is distributed under the University of Illinois Open Source 5*7c3d14c8STreehugger Robot // License. See LICENSE.TXT for details. 6*7c3d14c8STreehugger Robot 7*7c3d14c8STreehugger Robot /* 8*7c3d14c8STreehugger Robot * orbars.c 9*7c3d14c8STreehugger Robot * testObjects 10*7c3d14c8STreehugger Robot * 11*7c3d14c8STreehugger Robot * Created by Blaine Garst on 9/17/08. 12*7c3d14c8STreehugger Robot * 13*7c3d14c8STreehugger Robot * CONFIG rdar://6276695 error: before ‘|’ token 14*7c3d14c8STreehugger Robot */ 15*7c3d14c8STreehugger Robot 16*7c3d14c8STreehugger Robot #include <stdio.h> 17*7c3d14c8STreehugger Robot main(int argc,char * argv[])18*7c3d14c8STreehugger Robotint main(int argc, char *argv[]) { 19*7c3d14c8STreehugger Robot int i = 10; 20*7c3d14c8STreehugger Robot void (^b)(void) = ^(void){ | i | printf("hello world, %d\n", ++i); }; 21*7c3d14c8STreehugger Robot printf("%s: success :-(\n", argv[0]); 22*7c3d14c8STreehugger Robot return 0; 23*7c3d14c8STreehugger Robot } 24