From a9f39581df26b77ef1f4a40c7814e908e44e08d0 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Fri, 21 Jun 2013 02:09:51 +0000 Subject: [PATCH] Add test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184519 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaObjC/class-def-test-1.m | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; -- 2.50.1