[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / SemaObjC / arc-setter-property-match.m
blob497e017da92ae30d00159af47f6d2f56fd420c3f
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-arc -fblocks -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
4 @class NSArray;
6 @interface MyClass2  {
7 @private
8     NSArray *_names1;
9     NSArray *_names2;
10     NSArray *_names3;
11     NSArray *_names4;
13 @property (readwrite, strong) NSArray *names1; // <-- warning: Type of property....
14 - (void)setNames1:(NSArray *)names;
15 @property (readwrite, strong) __strong NSArray *names2; // <-- warning: Type of property....
16 - (void)setNames2:(NSArray *)names;
17 @property (readwrite, strong) __strong NSArray *names3; // <-- OK
18 - (void)setNames3:(__strong NSArray *)names;
19 @property (readwrite, strong) NSArray *names4; // <-- warning: Type of property....
20 - (void)setNames4:(__strong NSArray *)names;
22 @end
24 @implementation MyClass2
25 - (NSArray *)names1 { return _names1; }
26 - (void)setNames1:(NSArray *)names {}
27 - (NSArray *)names2 { return _names2; }
28 - (void)setNames2:(NSArray *)names {}
29 - (NSArray *)names3 { return _names3; }
30 - (void)setNames3:(__strong NSArray *)names {}
31 - (NSArray *)names4 { return _names4; }
32 - (void)setNames4:(__strong NSArray *)names {}
34 @end