hanchenye-llvm-project/clang/test/SemaObjCXX/reserved-keyword-selectors.mm

36 lines
572 B
Plaintext

// RUN: clang-cc -fsyntax-only -verify %s
@interface A
- (void)asm;
- (void)bool;
- (void)catch;
- (void)class;
- (void)const_cast;
- (void)delete;
- (void)dynamic_cast;
- (void)explicit;
- (void)export;
- (void)false;
- (void)friend;
- (void)mutable;
- (void)namespace;
- (void)new;
- (void)operator;
- (void)private;
- (void)protected;
- (void)public;
- (void)reinterpret_cast;
- (void)static_cast;
- (void)template;
- (void)this;
- (void)throw;
- (void)true;
- (void)try;
- (void)typename;
- (void)typeid;
- (void)using;
- (void)virtual;
- (void)wchar_t;
@end