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