From: Fariborz Jahanian <fjahanian@apple.com> Date: Wed, 8 Sep 2010 22:36:14 +0000 (+0000) Subject: Test removed. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=757b77a5eee0a7c5d8b144e0148b61ee6727a993;p=clang Test removed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113428 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); -