From: Richard Smith Date: Sat, 21 Apr 2012 01:51:32 +0000 (+0000) Subject: Fix test failure. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=227e9f6f08a8715f341b37db6be50d60dff7f863;p=clang Fix test failure. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155271 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaTemplate/class-template-decl.cpp b/test/SemaTemplate/class-template-decl.cpp index 23385a701e..fe23d92411 100644 --- a/test/SemaTemplate/class-template-decl.cpp +++ b/test/SemaTemplate/class-template-decl.cpp @@ -99,20 +99,20 @@ namespace redecl { int A; // expected-note {{here}} template struct A; // expected-error {{different kind of symbol}} - int B; + int B; // expected-note {{here}} template struct B { // expected-error {{different kind of symbol}} }; template struct F; template struct K; - int G, H; + int G, H; // expected-note {{here}} struct S { int C; // expected-note {{here}} template struct C; // expected-error {{different kind of symbol}} - int D; + int D; // expected-note {{here}} template struct D { // expected-error {{different kind of symbol}} };