1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
// RUN: %clang_cc1 -x objective-c -fsyntax-only -verify -Wno-objc-root-class %s
// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s
#if __has_attribute(objc_requires_property_definitions)
__attribute ((objc_requires_property_definitions))
#endif
@interface NoAuto // expected-note 2 {{class with specified objc_requires_property_definitions attribute is declared here}}
@property int NoAutoProp; // expected-note 2 {{property declared here}}
@end
@implementation NoAuto // expected-warning {{property 'NoAutoProp' requires method 'NoAutoProp' to be defined}} \
// expected-warning {{property 'NoAutoProp' requires method 'setNoAutoProp:'}}
@end
__attribute ((objc_requires_property_definitions)) // redundant, just for testing
@interface Sub : NoAuto // expected-note 3 {{class with specified objc_requires_property_definitions attribute is declared here}}
@property (copy) id SubProperty; // expected-note 2 {{property declared here}}
@end
@implementation Sub // expected-warning {{property 'SubProperty' requires method 'SubProperty' to be defined}} \
// expected-warning {{property 'SubProperty' requires method 'setSubProperty:' to be defined}}
@end
@interface Deep : Sub
@property (copy) id DeepProperty;
@property (copy) id DeepSynthProperty;
@property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}}
@end
@implementation Deep // expected-warning {{property 'DeepMustSynthProperty' requires method 'setDeepMustSynthProperty:' to be defined}}
@dynamic DeepProperty;
@synthesize DeepSynthProperty;
- (id) DeepMustSynthProperty { return 0; }
@end
__attribute ((objc_requires_property_definitions)) // expected-error {{'objc_requires_property_definitions' attribute only applies to Objective-C interfaces}}
@interface Deep(CAT)
@end
__attribute ((objc_requires_property_definitions)) // expected-error {{'objc_requires_property_definitions' attribute only applies to Objective-C interfaces}}
@protocol P @end
// rdar://13388503
@interface NSObject @end
@protocol Foo
@property (readonly) char isFoo; // expected-note {{property declared here}}
@property (readonly) char isNotFree; // expected-note {{property declared here}}
@end
@interface Bar : NSObject <Foo>
@end
@implementation Bar
- (char)isFoo {
return 0;
}
- (char)isNotFree {
return 0;
}
@end
@interface Baz : Bar
@end
@interface Baz ()
@property (readwrite) char isFoo; // expected-warning {{auto property synthesis will not synthesize property 'isFoo' because it is 'readwrite' but it will be synthesized 'readonly' via another property}}
@property char Property1; // expected-warning {{auto property synthesis will not synthesize property 'Property1' because it cannot share an ivar with another synthesized property}}
@property char Property2;
@property (readwrite) char isNotFree; // expected-warning {{auto property synthesis will not synthesize property 'isNotFree'}}
@end
@implementation Baz { // expected-note {{detected while default synthesizing properties in class implementation}}
char _isFoo;
char _isNotFree;
}
@synthesize Property2 = Property1; // expected-note {{property synthesized here}}
- (void) setIsNotFree : (char)Arg {
_isNotFree = Arg;
}
@end
// More test where such warnings should not be issued.
@protocol MyProtocol
-(void)setProp1:(id)x;
@end
@protocol P1 <MyProtocol>
@end
@interface B
@property (readonly) id prop; // expected-note {{property declared here}}
@property (readonly) id prop1; // expected-note {{property declared here}}
@property (readonly) id prop2; // expected-note {{property declared here}}
@end
@interface B()
-(void)setProp:(id)x;
@end
@interface B(cat)
@property (readwrite) id prop2;
@end
@interface S : B<P1>
@property (assign,readwrite) id prop; // expected-warning {{auto property synthesis will not synthesize property 'prop'}}
@property (assign,readwrite) id prop1; // expected-warning {{auto property synthesis will not synthesize property 'prop1'}}
@property (assign,readwrite) id prop2; // expected-warning {{auto property synthesis will not synthesize property 'prop2'}}
@end
@implementation S // expected-note 3 {{detected while default synthesizing properties in class implementation}}
@end
// rdar://14085456
// No warning must be issued in this test.
@interface ParentObject
@end
@protocol TestObject
@property (readonly) int six;
@end
@interface TestObject : ParentObject <TestObject>
@property int six;
@end
@implementation TestObject
@synthesize six;
@end
// rdar://14094682
// no warning in this test
@interface ISAChallenge : NSObject {
}
@property (assign, readonly) int failureCount;
@end
@interface ISSAChallenge : ISAChallenge {
int _failureCount;
}
@property (assign, readwrite) int failureCount;
@end
@implementation ISAChallenge
- (int)failureCount {
return 0;
}
@end
@implementation ISSAChallenge
@synthesize failureCount = _failureCount;
@end
__attribute ((objc_requires_property_definitions(1))) // expected-error {{'objc_requires_property_definitions' attribute takes no arguments}}
@interface I1
@end
// rdar://15051465
@protocol SubFooling
@property(nonatomic, readonly) id hoho; // expected-note 2 {{property declared here}}
@end
@protocol Fooing<SubFooling>
@property(nonatomic, readonly) id muahahaha; // expected-note 2 {{property declared here}}
@end
typedef NSObject<Fooing> FooObject;
@interface Okay : NSObject<Fooing>
@end
@implementation Okay // expected-warning {{auto property synthesis will not synthesize property 'muahahaha' declared in protocol 'Fooing'}} expected-warning {{auto property synthesis will not synthesize property 'hoho' declared in protocol 'SubFooling'}}
@end // expected-note 2 {{add a '@synthesize' directive}}
@interface Fail : FooObject
@end
@implementation Fail // expected-warning {{auto property synthesis will not synthesize property 'muahahaha' declared in protocol 'Fooing'}} expected-warning {{auto property synthesis will not synthesize property 'hoho' declared in protocol 'SubFooling'}}
@end // expected-note 2 {{add a '@synthesize' directive}}
// rdar://16089191
@class NSURL;
@interface Root
- (void)setFileURL : (NSURL *) arg;
- (void)setFile : (NSURL *) arg;
- (NSURL *)fileSys;
- (void)setFileSys : (NSURL *) arg;
- (NSURL *)fileKerl;
@end
@interface SuperClass : Root
- (NSURL *)fileURL;
- (NSURL *)file;
- (NSURL *)fileLog;
- (void)setFileLog : (NSURL *) arg;
- (void)setFileKerl : (NSURL *) arg;
@end
@protocol r16089191Protocol
@property (readonly) NSURL *fileURL;
@property (copy) NSURL *file;
@property (copy) NSURL *fileSys;
@property (copy) NSURL *fileLog;
@property (copy) NSURL *fileKerl;
@end
@interface SubClass : SuperClass <r16089191Protocol>
@end
@implementation SubClass
@end
|