diff options
author | Anders Carlsson <andersca@mac.com> | 2010-10-02 17:08:38 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-10-02 17:08:38 +0000 |
commit | 305ac494a7856432b18910dfc7c825967de4bbcc (patch) | |
tree | 66e1e706f0322ae5e838affb46acfe57fdc8b6f1 | |
parent | 46c5591f0fa2e35367e44234e59bb041d15b778e (diff) |
Rename a test in preparation for fixing PR8169.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115410 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjCXX/reserved-keyword-methods.mm | 41 | ||||
-rw-r--r-- | test/SemaObjCXX/reserved-keyword-selectors.mm | 35 |
2 files changed, 41 insertions, 35 deletions
diff --git a/test/SemaObjCXX/reserved-keyword-methods.mm b/test/SemaObjCXX/reserved-keyword-methods.mm new file mode 100644 index 0000000000..2ed166ef60 --- /dev/null +++ b/test/SemaObjCXX/reserved-keyword-methods.mm @@ -0,0 +1,41 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s + +#define FOR_EACH_KEYWORD(macro) \ +macro(asm) \ +macro(bool) \ +macro(catch) \ +macro(class) \ +macro(const_cast) \ +macro(delete) \ +macro(dynamic_cast) \ +macro(explicit) \ +macro(export) \ +macro(false) \ +macro(friend) \ +macro(mutable) \ +macro(namespace) \ +macro(new) \ +macro(operator) \ +macro(private) \ +macro(protected) \ +macro(public) \ +macro(reinterpret_cast) \ +macro(static_cast) \ +macro(template) \ +macro(this) \ +macro(throw) \ +macro(true) \ +macro(try) \ +macro(typename) \ +macro(typeid) \ +macro(using) \ +macro(virtual) \ +macro(wchar_t) + + +#define DECLARE_METHOD(name) - (void)name; + +@interface A +FOR_EACH_KEYWORD(DECLARE_METHOD) +@end + diff --git a/test/SemaObjCXX/reserved-keyword-selectors.mm b/test/SemaObjCXX/reserved-keyword-selectors.mm deleted file mode 100644 index 3c4bef595d..0000000000 --- a/test/SemaObjCXX/reserved-keyword-selectors.mm +++ /dev/null @@ -1,35 +0,0 @@ -// RUN: %clang_cc1 -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 - |