blob: 504a684e530a11c7acd4821cd36c0bf48758ce0d [file] [log] [blame]
/* APPLE LOCAL file radar 4506903 */
/* Test for property lookup in a protocol id. */
/* { dg-options "-mmacosx-version-min=10.5" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */
@protocol NSCollection
@property(readonly) int count;
@end
static int testCollection(id <NSCollection> collection) {
return collection.count;
}