blob: c0b41055b6c72f76dd46c188e90903e55ba6103a [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" } */
@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;
}