// RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-objc-root-class -Wno-incomplete-implementation -triple x86_64-apple-macosx10.10.0 -verify %s
// rdar://20626062
;
@interface class // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
@end
@interface Bar: class // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
@end
@protocol new // expected-error {{expected identifier; 'new' is a keyword in Objective-C++}}
@end
@protocol P2;
@protocol delete // expected-error {{expected identifier; 'delete' is a keyword in Objective-C++}}
@end
@class Foo, try; // expected-error {{expected identifier; 'try' is a keyword in Objective-C++}}
@interface <P, new> // expected-error {{expected identifier; 'new' is a keyword in Objective-C++}}
@end
@compatibility_alias C Foo; // ok
@compatibility_alias const_cast Bar; // expected-error {{expected identifier; 'const_cast' is a keyword in Objective-C++}}
@compatibility_alias C2 class; // expected-error {{expected identifier; 'class' is a keyword in Objective-C++}}
void func() {
(void)@protocol(P); // ok
(void)@protocol(delete); // expected-error {{expected identifier; 'delete' is a keyword in Objective-C++}}
}