blob: d4543a8f043608a3710e9d7d093a09b0d1cba2f4 [file] [log] [blame]
/* APPLE LOCAL file radar 4968128 */
/* Test that user specified setter declaration is generated correctly.
No error/warning must be issued in this test case. */
/* { dg-options "-mmacosx-version-min=10.5 -fobjc-new-property" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-options "-fobjc-new-property" { target arm*-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */
@interface PSEntry
@property (getter=isRead, setter=setRead:) int read;
@end
int foo (PSEntry *entry)
{
entry.read = 1 + entry.read;
}