blob: 9935a1acdbd7bbcfde2177871ac479e78b6d5f30 [file] [log] [blame]
/* APPLE LOCAL file radar 6379842 - blocks */
/* { dg-do compile } */
/* LLVM LOCAL add x86_64 Darwin */
/* { dg-options "-ObjC -fblocks -m64 -fobjc-gc-only" { target powerpc*-*-darwin* i?86*-*-darwin* x86_64-*-darwin* } } */
/* { dg-options "-ObjC -fblocks -fobjc-gc-only" {target arm*-*-darwin* } } */
@interface Thing {}
@property void(^someBlock)(void); /* { dg-warning "\\'copy\\' attribute must be specified for the block property" } */
@property(copy) void(^OK)(void);
@end