Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / default-synthesize-3.m
blob5d253d2d8a8a2e234451bd478dcf40b54b56b294
1 // RUN: %clang_cc1 -x objective-c -fsyntax-only -verify -Wno-objc-root-class %s
2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s
4 #if __has_attribute(objc_requires_property_definitions)
5 __attribute ((objc_requires_property_definitions)) 
6 #endif
7 @interface NoAuto // expected-note 2 {{class with specified objc_requires_property_definitions attribute is declared here}}
8 @property int NoAutoProp; // expected-note 2 {{property declared here}}
9 @end
11 @implementation NoAuto  // expected-warning {{property 'NoAutoProp' requires method 'NoAutoProp' to be defined}} \
12                         // expected-warning {{property 'NoAutoProp' requires method 'setNoAutoProp:'}}
13 @end
15 __attribute ((objc_requires_property_definitions))  // redundant, just for testing
16 @interface Sub : NoAuto  // expected-note 3 {{class with specified objc_requires_property_definitions attribute is declared here}}
17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}}
18 @end
20 @implementation Sub // expected-warning {{property 'SubProperty' requires method 'SubProperty' to be defined}} \
21                     // expected-warning {{property 'SubProperty' requires method 'setSubProperty:' to be defined}}
22 @end
24 @interface Deep : Sub
25 @property (copy) id DeepProperty;
26 @property (copy) id DeepSynthProperty;
27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}}
28 @end
30 @implementation Deep // expected-warning {{property 'DeepMustSynthProperty' requires method 'setDeepMustSynthProperty:' to be defined}}
31 @dynamic DeepProperty;
32 @synthesize DeepSynthProperty;
33 - (id) DeepMustSynthProperty { return 0; }
34 @end
36 __attribute ((objc_requires_property_definitions)) // expected-error {{'objc_requires_property_definitions' attribute only applies to Objective-C interfaces}}
37 @interface Deep(CAT)
38 @end
40 __attribute ((objc_requires_property_definitions)) // expected-error {{'objc_requires_property_definitions' attribute only applies to Objective-C interfaces}}
41 @protocol P @end
43 @interface NSObject @end
44 @protocol Foo
45 @property (readonly) char isFoo; // expected-note {{property declared here}}
46 @property (readonly) char isNotFree;  // expected-note {{property declared here}}
47 @end
49 @interface Bar : NSObject <Foo>
50 @end
52 @implementation Bar
53 - (char)isFoo {
54     return 0;
56 - (char)isNotFree {
57     return 0;
59 @end
61 @interface Baz : Bar
62 @end
64 @interface Baz ()
65 @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}}
66 @property char Property1; // expected-warning {{auto property synthesis will not synthesize property 'Property1' because it cannot share an ivar with another synthesized property}}
67 @property char Property2;
68 @property (readwrite) char isNotFree; // expected-warning {{auto property synthesis will not synthesize property 'isNotFree'}}
69 @end
71 @implementation Baz { // expected-note {{detected while default synthesizing properties in class implementation}}
72     char _isFoo;
73     char _isNotFree;
75 @synthesize Property2 = Property1; // expected-note {{property synthesized here}}
77 - (void) setIsNotFree : (char)Arg {
78   _isNotFree = Arg;
81 @end
83 // More test where such warnings should not be issued.
84 @protocol MyProtocol
85 -(void)setProp1:(id)x;
86 @end
88 @protocol P1 <MyProtocol>
89 @end
91 @interface B
92 @property (readonly) id prop;  // expected-note {{property declared here}}
93 @property (readonly) id prop1;  // expected-note {{property declared here}}
94 @property (readonly) id prop2;  // expected-note {{property declared here}}
95 @end
97 @interface B()
98 -(void)setProp:(id)x;
99 @end
101 @interface B(cat)
102 @property (readwrite) id prop2;
103 @end
105 @interface S : B<P1>
106 @property (assign,readwrite) id prop; // expected-warning {{auto property synthesis will not synthesize property 'prop'}}
107 @property (assign,readwrite) id prop1; // expected-warning {{auto property synthesis will not synthesize property 'prop1'}}
108 @property (assign,readwrite) id prop2; // expected-warning {{auto property synthesis will not synthesize property 'prop2'}}
109 @end
111 @implementation S // expected-note 3 {{detected while default synthesizing properties in class implementation}}
112 @end
114 // No warning must be issued in this test.
115 @interface ParentObject
116 @end
118 @protocol TestObject 
119 @property (readonly) int six;
120 @end
122 @interface TestObject : ParentObject <TestObject>
123 @property int six;
124 @end
126 @implementation TestObject
127 @synthesize six;
128 @end
130 // no warning in this test
131 @interface ISAChallenge : NSObject {
134 @property (assign, readonly) int failureCount;
135 @end
137 @interface ISSAChallenge : ISAChallenge {
138     int _failureCount;
140 @property (assign, readwrite) int failureCount;
141 @end
143 @implementation ISAChallenge
144 - (int)failureCount {
145     return 0;
147 @end
149 @implementation ISSAChallenge
151 @synthesize failureCount = _failureCount;
152 @end
154 __attribute ((objc_requires_property_definitions(1))) // expected-error {{'objc_requires_property_definitions' attribute takes no arguments}}
155 @interface I1
156 @end
158 @protocol SubFooling
159   @property(nonatomic, readonly) id hoho; // expected-note 2 {{property declared here}}
160 @end
162 @protocol Fooing<SubFooling>
163   @property(nonatomic, readonly) id muahahaha; // expected-note 2 {{property declared here}}
164 @end
166 typedef NSObject<Fooing> FooObject;
168 @interface Okay : NSObject<Fooing>
169 @end
171 @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'}}
172 @end // expected-note 2 {{add a '@synthesize' directive}}
174 @interface Fail : FooObject
175 @end
177 @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'}}
178 @end // expected-note 2 {{add a '@synthesize' directive}}
180 @class NSURL;
182 @interface Root
183 - (void)setFileURL : (NSURL *) arg;
184 - (void)setFile : (NSURL *) arg;
185 - (NSURL *)fileSys;
186 - (void)setFileSys : (NSURL *) arg;
187 - (NSURL *)fileKerl;
188 @end
190 @interface SuperClass : Root
191 - (NSURL *)fileURL;
192 - (NSURL *)file;
193 - (NSURL *)fileLog;
194 - (void)setFileLog : (NSURL *) arg;
195 - (void)setFileKerl : (NSURL *) arg;
196 @end
198 @protocol r16089191Protocol
199 @property (readonly) NSURL *fileURL;
200 @property (copy) NSURL *file;
201 @property (copy) NSURL *fileSys;
202 @property (copy) NSURL *fileLog;
203 @property (copy) NSURL *fileKerl;
204 @end
206 @interface SubClass : SuperClass <r16089191Protocol>
207 @end
209 @implementation SubClass
210 @end