testsuite: skip attr-retain-?.c on AIX
[official-gcc.git] / gcc / testsuite / objc.dg / property / property-neg-7.m
blobd721ed1295e2b62391b590a57612dcef674fa67d
1 /* { dg-do compile } */
3 @interface NSArray 
5   int count;
7 @property(readonly) int count;
8 @end
10 @implementation NSArray
11 @synthesize count;
12 @end
14 void foo (NSArray *ans[], id pid, id apid[], int i) {
15     NSArray *test;
16     test.count = 1; /* { dg-error "'readonly' property cannot be set" } */
17     ((NSArray *)pid).count = 1;  /* { dg-error "'readonly' property cannot be set" } */
18     ((NSArray *)apid[i]).count = 1; /* { dg-error "'readonly' property cannot be set" } */
19     ans[i].count = 3; /* { dg-error "'readonly' property cannot be set" } */