forked from OSchip/llvm-project
13 lines
318 B
Mathematica
13 lines
318 B
Mathematica
![]() |
// RUN: clang -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
|
||
|
|