blob: 9dccec595054379bfac13a5f920fd4b07a8898d7 [file] [log] [blame]
/* APPLE LOCAL file radar 4805321 */
/* Test lookup of properties in protocol */
/* Program should compile with no error or warning. */
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-options "-mmacosx-version-min=10.5 -fobjc-new-property -fobjc-abi-version=2" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-options "-fobjc-new-property -fobjc-abi-version=2" { target arm*-*-darwin* } } */
@protocol Rectangle
@property (assign) int foo;
@end
@protocol Square
@end
@interface Label <Square, Rectangle>
@end;
int main ()
{
Label <Square, Rectangle> * p;
int gg = p.foo;
p.foo = 200;
}