summaryrefslogtreecommitdiffstats
path: root/clang/test/Parser/objc-property-syntax.m
blob: 1a8fd119475a6ad13f9c4786c13838be22ca5792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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

OpenPOWER on IntegriCloud