blob: 32231e4263f01db59810cbccc15ebe7f468051bf [file] [log] [blame]
/* APPLE LOCAL file 4649718, 4651088 */
/* Test for bogus property declarations. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-mmacosx-version-min=10.5" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-do compile } */
__attribute__((objc_root_class)) @interface MyClass {
};
@property unsigned char bufferedUTF8Bytes[4]; /* { dg-error "bad property declaration" } */
@property unsigned char bufferedUTFBytes:1; /* { dg-error "bad property declaration" } */
@end
@implementation MyClass
@end