[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Parser / objc-cxx-keyword-identifiers.mm
blobcff38c5543713059427cf3abb7155c8d0f6255e8
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-objc-root-class -Wno-incomplete-implementation -triple x86_64-apple-macosx10.10.0 -verify %s
3 // rdar://20626062
5 struct S {
6   int throw; // expected-error {{expected member name or ';' after declaration specifiers; 'throw' is a keyword in Objective-C++}}
7 };
9 @interface class // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
10 @end
12 @interface Bar: class // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
13 @end
15 @protocol P // ok
16 @end
18 @protocol new // expected-error {{expected identifier; 'new' is a keyword in Objective-C++}}
19 @end
21 @protocol P2;
22 @protocol delete // expected-error {{expected identifier; 'delete' is a keyword in Objective-C++}}
23 @end
25 @class Foo, try; // expected-error {{expected identifier; 'try' is a keyword in Objective-C++}}
27 @interface Foo
29 @property (readwrite, nonatomic) int a, b, throw; // expected-error {{expected member name or ';' after declaration specifiers; 'throw' is a keyword in Objective-C++}}
31 -foo:(int)class; // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
32 +foo:(int)constexpr; // expected-error {{expected identifier; 'constexpr' is a keyword in Objective-C++}}
34 @end
36 @interface Foo () <P, new> // expected-error {{expected identifier; 'new' is a keyword in Objective-C++}}
37 @end
39 @implementation Foo
41 @synthesize a = _a; // ok
42 @synthesize b = virtual; // expected-error {{expected identifier; 'virtual' is a keyword in Objective-C++}}
44 @dynamic throw; // expected-error {{expected identifier; 'throw' is a keyword in Objective-C++}}
46 -foo:(int)class { // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
49 @end
51 @implementation class // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
52 @end
54 @implementation Bar: class // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
55 @end
57 @compatibility_alias C Foo; // ok
58 @compatibility_alias const_cast Bar; // expected-error {{expected identifier; 'const_cast' is a keyword in Objective-C++}}
59 @compatibility_alias C2 class; // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
61 void func() {
62   (void)@protocol(P); // ok
63   (void)@protocol(delete); // expected-error {{expected identifier; 'delete' is a keyword in Objective-C++}}