forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			909 B
		
	
	
	
		
			Objective-C
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			909 B
		
	
	
	
		
			Objective-C
		
	
	
	
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=basic -analyzer-constraints=basic %s -verify
 | 
						|
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=basic -analyzer-constraints=range %s -verify
 | 
						|
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -analyzer-constraints=basic %s -verify
 | 
						|
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -analyzer-constraints=range %s -verify
 | 
						|
 | 
						|
// The point of this test cases is to exercise properties in the static
 | 
						|
// analyzer
 | 
						|
 | 
						|
@interface MyClass {
 | 
						|
@private
 | 
						|
    id _X;
 | 
						|
}
 | 
						|
- (id)initWithY:(id)Y;
 | 
						|
@property(copy, readwrite) id X;
 | 
						|
@end
 | 
						|
 | 
						|
@implementation MyClass
 | 
						|
@synthesize X = _X;
 | 
						|
- (id)initWithY:(id)Y {
 | 
						|
  self.X = Y;
 | 
						|
  return self;
 | 
						|
}
 | 
						|
@end
 |