In gcc/: 2010-10-30 Nicola Pero <nicola.pero@meta-innovation.com>
[platform/upstream/gcc.git] / gcc / testsuite / obj-c++.dg / property / property-neg-7.mm
1 /* { dg-do compile } */
2
3 @interface NSArray 
4 {
5   int count;
6 }
7 @property(readonly) int count;
8 @end
9
10 @implementation NSArray
11 @synthesize count;
12 @end
13
14 void foo (NSArray *ans[], id pid, id apid[], int i) {
15     NSArray *test;
16     test.count = 1; /* { dg-error "readonly property can not be set" } */
17     ((NSArray *)pid).count = 1;  /* { dg-error "readonly property can not be set" } */
18     ((NSArray *)apid[i]).count = 1; /* { dg-error "readonly property can not be set" } */
19     ans[i].count = 3; /* { dg-error "readonly property can not be set" } */
20 }