blob: 73cf4ca324735b8453f8d8d4b4f48aeb0f875c82 [file] [log] [blame]
/* APPLE LOCAL file radar 4436866 */
/* This program checks for proper use of 'readonly' attribute. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-fno-objc-new-property -mmacosx-version-min=10.5" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface Bar
{
int iVar;
}
@property (ivar) int FooBar;
@end
@implementation Bar
@property (readonly) int FooBar; /* { dg-error "property \\'FooBar\\' is \\'readonly\\' in implementation but not in interface" } */
@end