blob: 37887a34f76721f0290d476fd130d3776544e456 [file] [log] [blame]
// Matching properties
@interface I1 {
}
- (int)getProp2;
- (void)setProp2:(int)value;
@end
// Mismatched property
@interface I2
@property (readonly) float Prop1;
@end