blob: cf75aaa2d5a2f53fab30b5393e51cbca3de123b5 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Fariborz Jahanian573acde2009-01-17 23:21:10 +00002
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