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