Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / property-impl-misuse.m
blob01afd0a1e9a34ae5243f2dae98f8b37e60df6b08
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 @interface I {
4   int Y;
6 @property int X;
7 @property int Y;
8 @property int Z;
9 @end
11 @implementation I
12 @dynamic X; // expected-note {{previous declaration is here}}
13 @dynamic X; // expected-error {{property 'X' is already implemented}}
14 @synthesize Y; // expected-note {{previous use is here}}
15 @synthesize Z=Y; // expected-error {{synthesized properties 'Z' and 'Y' both claim instance variable 'Y'}}
16 @end
18 @interface IDEPathCell 
20 @private
21     id _gradientStyle;
24 @property (readwrite, assign, nonatomic) id gradientStyle;
25 @end
27 @implementation IDEPathCell
29 @synthesize gradientStyle = _gradientStyle;
30 - (void)setGradientStyle:(id)value { }
32 + (id)_componentCellWithRepresentedObject {
33     return self.gradientStyle;
35 @end
37 @interface rdar11054153
38 @property int P; // expected-error {{type of property 'P' ('int') does not match type of accessor 'P' ('void')}}
39 - (void)P; // expected-note {{declared here}}
41 @property int P1; // expected-warning {{type of property 'P1' does not match type of accessor 'P1'}} 
42 - (double) P1; // expected-note {{declared here}}
44 @property int P2; // expected-error {{type of property 'P2' ('int') does not match type of accessor 'P2' ('double *')}}
45 - (double*)P2; // expected-note {{declared here}}
47 @end