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