blob: 647357c3da966c0d6f1bf4cc0478d5f04e2490ac [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 } */
@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