diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-09-08 22:36:14 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-09-08 22:36:14 +0000 |
commit | 757b77a5eee0a7c5d8b144e0148b61ee6727a993 (patch) | |
tree | 7a3f05024b39891a2d4ddaf5207d1c8b9d687279 | |
parent | d580e5636568cdc8db0584dd3b7a53323f981e48 (diff) |
Test removed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113428 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/legacy-objc-types.m | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/SemaObjC/legacy-objc-types.m b/test/SemaObjC/legacy-objc-types.m deleted file mode 100644 index dbe32e64a2..0000000000 --- a/test/SemaObjC/legacy-objc-types.m +++ /dev/null @@ -1,20 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s -// rdar:// 8400356 - -struct objc_object; - -void f(id ptr) { } // expected-note {{previous definition is here}} -void f(struct objc_object* ptr) { } // expected-error {{redefinition of 'f'}} - -struct objc_class; - -void g(Class ptr) {} // expected-note {{previous definition is here}} -void g(struct objc_class* ptr) { } // expected-error {{redefinition of 'g'}} - -void h(Class ptr, struct objc_object* ptr1) {} // expected-note {{previous definition is here}} -void h(struct objc_class* ptr, id ptr1) {} // expected-error {{redefinition of 'h'}} - -void i(Class ptr, struct objc_object* ptr1); -void i(struct objc_class* ptr, id ptr1) {} -void i(struct objc_class* ptr, struct objc_object* ptr1); - |