]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/Parser/objc-property-syntax.m
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / Parser / objc-property-syntax.m
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2
3 @interface MyClass {
4 int prop;
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 @property(nonatomic, retain, setter=ab_setDefaultToolbarItems) MyClass *ab_defaultToolbarItems; // expected-error {{method name referenced in property setter attribute must end with ':'}}
9
10 @property int prop;
11 @end
12
13 @implementation MyClass
14 @dynamic ab_defaultToolbarItems // expected-error{{expected ';' after @dynamic}}
15 @synthesize prop // expected-error{{expected ';' after @synthesize}}
16 @end
17