blob: d9e73188003f3ad62a62efba30bfbe4c7c558c46 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -analyze -verify -analyzer-store=basic -checker-cfref %s
Daniel Dunbard7d5f022009-03-24 02:24:46 +00002// RUN: clang-cc -analyze -verify -analyzer-store=region -checker-cfref %s
Ted Kremenek595c7ab2008-08-13 03:55:18 +00003
4// Delta-Debugging reduced preamble.
5typedef signed char BOOL;
6typedef unsigned int NSUInteger;
7@class NSString, Protocol;
8extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2)));
9typedef struct _NSZone NSZone;
10@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
11@protocol NSObject - (BOOL)isEqual:(id)object; @end
12@protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end
13@protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; @end
14@interface NSObject <NSObject> {} + (id)alloc; @end
15extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
16@interface NSValue : NSObject <NSCopying, NSCoding> - (void)getValue:(void *)value; @end
17@class NSString, NSData;
18typedef struct _NSPoint {} NSRange;
19@interface NSValue (NSValueRangeExtensions)
20+ (NSValue *)valueWithRange:(NSRange)range;
21- (id)objectAtIndex:(NSUInteger)index;
22@end
23@interface NSAutoreleasePool : NSObject {} - (void)drain; @end
24extern NSString * const NSBundleDidLoadNotification;
25typedef struct {} NSDecimal;
26@interface NSNetService : NSObject {} - (id)init; @end
27extern NSString * const NSUndoManagerCheckpointNotification;
28
29// Test case: <rdar://problem/6145427>
30
31int main (int argc, const char * argv[]) {
32 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
33 id someUnintializedPointer = [someUnintializedPointer objectAtIndex:0]; // expected-warning{{Receiver in message expression is an uninitialized value.}}
34 NSLog(@"%@", someUnintializedPointer);
35 [pool drain];
36 return 0;
37}