Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / objc.dg / property / at-property-11.m
blob33baee9d66225aba8cb6568e9ad0105176169474
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, October 2010.  */
2 /* { dg-do run } */
3 /* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
5 /* Test that properties are found even if implemented in superclasses.  */
7 #include <stdlib.h>
8 #include <objc/objc.h>
9 #include <objc/runtime.h>
11 @interface MyRootClass
13   Class isa;
14   int a;
16 /* Use the simplest synthesized accessor (assign, nonatomic) as we are
17    not testing the synthesized accessors in this test, just the
18    property syntax.  */
19 @property (nonatomic) int a;
20 + (id) initialize;
21 + (id) alloc;
22 - (id) init;
23 @end
25 @implementation MyRootClass
26 + (id) initialize { return self; }
27 + (id) alloc { return class_createInstance (self, 0); }
28 - (id) init { return self; }
29 @synthesize a;
30 @end
32 @interface MySubClass : MyRootClass
33 @end
35 @implementation MySubClass
36 @end
38 int main (void)
40   MySubClass *object = [[MySubClass alloc] init];
42   object.a = 40;
43   if (object.a != 40)
44     abort ();
46   return 0;