Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / nsobject-attribute.m
blobf775a32d1f80445c4b20f4553fccdf314cdc8010
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 typedef struct CGColor * __attribute__ ((NSObject)) CGColorRef;
4 typedef struct CGColor * __attribute__((NSObject(12))) Illegal;  // expected-error {{'NSObject' attribute takes no arguments}}
6 static int count;
7 static CGColorRef tmp = 0;
9 typedef struct S1  __attribute__ ((NSObject)) CGColorRef1; // expected-error {{'NSObject' attribute is for pointer types only}}
10 typedef void *  __attribute__ ((NSObject)) CGColorRef2; // no-warning
11 typedef void * CFTypeRef;
13 @interface HandTested {
14 @public
15     CGColorRef x;
18 @property(copy) CGColorRef x;
19 typedef struct CGColor * __attribute__((NSObject)) CGColorRefNoNSObject; // no-warning
20 @property (nonatomic, retain) CGColorRefNoNSObject color;
21 @property (strong) __attribute__((NSObject)) CFTypeRef myObj; // no-warning
22 @property (strong, nullable) CGColorRefNoNSObject color2; // no-warning
23 @end
25 void setProperty(id self, id value)  {
26   ((HandTested *)self)->x = value;
29 id getProperty(id self) {
30      return (id)((HandTested *)self)->x;
33 @implementation HandTested
34 @synthesize x=x;
35 @synthesize myObj;
36 @dynamic color;
37 @end
39 int main(int argc, char *argv[]) {
40     HandTested *to;
41     to.x = tmp;  // setter
42     if (tmp != to.x)
43       to.x = tmp;
44     return 0;
47 @interface I
49    __attribute__((NSObject)) void * color; // expected-warning {{'NSObject' attribute may be put on a typedef only; attribute is ignored}}
51 @property (nonatomic, retain) __attribute__((NSObject)) CGColorRefNoNSObject color; // // no-warning
52 @end
53 void test_10453342(void) {
54     char* __attribute__((NSObject)) string2 = 0; // expected-warning {{'NSObject' attribute may be put on a typedef only; attribute is ignored}}
57 @interface A { int i; }
58 @property(retain) __attribute__((NSObject)) int i; // expected-error {{'NSObject' attribute is for pointer types only}} \
59                                                    // expected-error {{property with 'retain (or strong)' attribute must be of object type}}
60 @end
62 @implementation A
63 @synthesize i;
64 @end