Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 1 | // Matching properties |
2 | @interface I1 { | ||||
3 | } | ||||
4 | - (int)getProp2; | ||||
5 | - (void)setProp2:(int)value; | ||||
6 | @end | ||||
7 | |||||
8 | // Mismatched property | ||||
9 | @interface I2 | ||||
10 | @property (readonly) float Prop1; | ||||
11 | @end | ||||
12 |