blob: 294fb541e47481402d7cc562d1ba6ddd16d38884 [file] [log] [blame]
// RUN: clang -cc1 -fsyntax-only -verify %s
@interface MyClass {
};
@property unsigned char bufferedUTF8Bytes[4]; // expected-error {{property cannot have array or function type}}
@property unsigned char bufferedUTFBytes:1; // expected-error {{property name cannot be a bitfield}}
@end
@implementation MyClass
@end