forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			817 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			817 B
		
	
	
	
		
			Plaintext
		
	
	
	
| // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-fragile-abi %s -o %t-rw.cpp
 | |
| // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
 | |
| // radar 7669784
 | |
| 
 | |
| typedef void * id;
 | |
| void *sel_registerName(const char *);
 | |
| 
 | |
| @interface NSMutableString
 | |
| - (NSMutableString *)string;
 | |
| @end
 | |
| 
 | |
| @interface Z
 | |
| @end
 | |
| 
 | |
| @implementation Z
 | |
| 
 | |
| - (void)x {
 | |
|         id numbers;
 | |
|     int i, numbersCount = 42;
 | |
|     __attribute__((__blocks__(byref))) int blockSum = 0;
 | |
|     void (^add)(id n, int idx, char *stop) = ^(id n, int idx, char *stop) { };
 | |
|     [numbers enumerateObjectsUsingBlock:add];
 | |
|     NSMutableString *forwardAppend = [NSMutableString string];
 | |
|     __attribute__((__blocks__(byref))) NSMutableString *blockAppend = [NSMutableString string];
 | |
| }
 | |
| 
 | |
| @end
 | |
| 
 |