From: Eli Friedman Date: Fri, 21 Jun 2013 02:09:51 +0000 (+0000) Subject: Add test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9f39581df26b77ef1f4a40c7814e908e44e08d0;p=clang Add test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184519 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaObjC/class-def-test-1.m b/test/SemaObjC/class-def-test-1.m index 0d114b99fb..7931cc3fdc 100644 --- a/test/SemaObjC/class-def-test-1.m +++ b/test/SemaObjC/class-def-test-1.m @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s @protocol SUPER; @@ -16,9 +16,10 @@ typedef int INTF; // expected-note {{previous definition is here}} typedef int OBJECT; // expected-error {{redefinition of 'OBJECT' as different kind of symbol}} -typedef int OBJECT2; // expected-note {{previous definition is here}} +typedef int OBJECT2; // expected-note 2 {{previous definition is here}} @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}} +@implementation INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}} @protocol PROTO;