c: fix ICE when forming composite type for two structures / unions [PR117548]
[official-gcc.git] / gcc / testsuite / obj-c++.dg / gnu-api-2-property.mm
blob601f39fa7e994cf4823b87cb00c6ff9a02f71c91
1 /* Test the Modern GNU Objective-C Runtime API.
3   This is test 'property', covering all functions starting with 'property'.  */
5 /* { dg-do run } */
6 /* { dg-skip-if "No API#2 pre-Darwin9" { *-*-darwin[5-8]* } { "-fnext-runtime" } { "" } } */
7 // { dg-additional-options "-Wno-objc-root-class" }
9 /* To get the modern GNU Objective-C Runtime API, you include
10    objc/runtime.h.  */
11 #include <objc/runtime.h>
12 #include <stdlib.h>
13 #include <iostream>
14 #include <cstring>
16 @interface MyRootClass
17 { Class isa; }
18 + alloc;
19 - init;
20 + initialize;
21 @end
23 @implementation MyRootClass
24 + alloc { return class_createInstance (self, 0); }
25 - init  { return self; }
26 + initialize { return self; }
27 @end
29 @interface MySubClass : MyRootClass
31   id propertyA;
32   id propertyB;
34 @property (assign, getter=getP, setter=setP:) id propertyA;
35 @property (assign, nonatomic) id propertyB;
36 @end
38 @implementation MySubClass
39 @synthesize propertyA;
40 @synthesize propertyB;
41 @end
44 int main ()
46   /* Functions are tested in alphabetical order.  */
48   std::cout << "Testing property_getAttributes () ...\n";
49   {
50     /* The Apple/NeXT runtime seems to crash on the following.  */
51 #ifdef __GNU_LIBOBJC__
52     if (property_getAttributes (NULL) != NULL)
53       abort ();
54 #endif
56     /* The GNU runtime doesn't support looking up properties at
57        runtime yet.  */
58 #ifdef __OBJC2__
59     {
60       objc_property_t property;
61       
62       property = class_getProperty (objc_getClass ("MySubClass"), "propertyA");
63       if (std::strcmp (property_getAttributes (property),
64                   "T@,GgetP,SsetP:,VpropertyA") != 0)
65         abort ();
67       property = class_getProperty (objc_getClass ("MySubClass"), "propertyB");
68       if (std::strcmp (property_getAttributes (property),
69                   "T@,N,VpropertyB") != 0)
70         abort ();
71     }
72 #endif    
73   }
75   std::cout << "Testing property_getName () ...\n";
76   {
77     /* The Apple/NeXT runtime seems to crash on the following.  */
78 #ifdef __GNU_LIBOBJC__
80     if (property_getName (NULL) != NULL)
81       abort ();
82 #endif
84     /* The GNU runtime doesn't support looking up properties at
85        runtime yet.  */
86 #ifdef __OBJC2__
87     {
88       objc_property_t property;
89       
90       property = class_getProperty (objc_getClass ("MySubClass"), "propertyA");
91       if (std::strcmp (property_getName (property), "propertyA") != 0)
92         abort ();
94       property = class_getProperty (objc_getClass ("MySubClass"), "propertyB");
95       if (std::strcmp (property_getName (property), "propertyB") != 0)
96         abort ();
97     }
98 #endif
99   }
101   return (0);