[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Analysis / rdar-7168531.m
blobfb50f8e468c01bf42b5dad5d378d4abf0464614f
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,alpha.core -triple i386-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 %s
3 // Note that the target triple is important for this test case.  It specifies that we use the
4 // fragile Objective-C ABI.
6 @interface Foo {
7   int x;
9 @end
11 @implementation Foo
12 static Foo* bar(Foo *p) {
13   if (p->x)
14    return ++p;  // This is only valid for the fragile ABI.
16   return p;
18 @end