2009-03-24 10:24:46 +08:00
|
|
|
// RUN: clang-cc -analyze -checker-cfref -analyzer-constraints=basic -analyzer-store=basic %s -verify
|
2009-02-19 12:07:38 +08:00
|
|
|
|
|
|
|
typedef struct Foo { int x; } Bar;
|
|
|
|
|
|
|
|
@interface MyClass {}
|
|
|
|
- (Bar)foo;
|
|
|
|
@end
|
|
|
|
@implementation MyClass
|
|
|
|
- (Bar)foo {
|
|
|
|
struct Foo f = { 0 };
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
void createFoo() {
|
|
|
|
MyClass *obj = 0;
|
|
|
|
Bar f = [obj foo]; // expected-warning{{The receiver in the message expression is 'nil' and results in the returned value (of type 'Bar') to be garbage or otherwise undefined.}}
|
|
|
|
}
|
|
|
|
|