blob: 1a8fd119475a6ad13f9c4786c13838be22ca5792 [file] [log] [blame]
Fariborz Jahanian573acde2009-01-17 23:21:10 +00001// RUN: clang -fsyntax-only -verify %s
2
3@interface MyClass {
4
5};
6@property unsigned char bufferedUTF8Bytes[4]; // expected-error {{property cannot have array or function type}}
7@property unsigned char bufferedUTFBytes:1; // expected-error {{property name cannot be a bitfield}}
8@end
9
10@implementation MyClass
11@end
12