minix/external/bsd/llvm/dist/clang/test/Analysis/rdar-6600344-nil-receiver-undefined-struct-ret.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

26 lines
516 B
Objective-C

// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-constraints=range -analyzer-store=region -verify -Wno-objc-root-class %s
// expected-no-diagnostics
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]; // no-warning
}
void createFoo2() {
MyClass *obj = 0;
[obj foo]; // no-warning
Bar f = [obj foo]; // no-warning
}