blob: 1fe3043cae02c1e212fff5f8bc388178c5f362e2 [file] [log] [blame]
/* APPLE LOCAL file radar 5168496 */
/* Check that no warning must be issued when property type does not require use of
memory management; i.e. no 'retain' or 'copy' attribute is needed.
*/
/* { dg-options "-mmacosx-version-min=10.5" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */
__attribute__((objc_root_class)) @interface A {
};
@property id *foo;
@property id **foo2;
@property Class foo3;
@end