blob: 499ec1aee95d115494d84e9840581c8d4d3e05c1 [file] [log] [blame]
/* APPLE LOCAL file radar 4533107 */
/* Test for correct name lookup in presence of multiple protocols. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-mmacosx-version-min=10.5 -std=c99" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-options "-std=c99" { target arm*-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */
@protocol NSCoding
@end
@protocol LKObject <NSCoding>
@end
@protocol LKTiming
@property double duration;
@end
__attribute__((objc_root_class)) @interface LKAnimation <LKObject, LKTiming>
@end
static void test (void)
{
LKAnimation *anim;
anim.duration = 1.0;
}