]> granicus.if.org Git - clang/commitdiff
Fix test failure.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Sat, 21 Apr 2012 01:51:32 +0000 (01:51 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Sat, 21 Apr 2012 01:51:32 +0000 (01:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155271 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaTemplate/class-template-decl.cpp

index 23385a701e321c91c3a011cf7d50a9ac7a1b0c5c..fe23d92411089ace585c38041a3a6fc44c7e8dc2 100644 (file)
@@ -99,20 +99,20 @@ namespace redecl {
   int A; // expected-note {{here}}
   template<typename T> struct A; // expected-error {{different kind of symbol}}
 
-  int B;
+  int B; // expected-note {{here}}
   template<typename T> struct B { // expected-error {{different kind of symbol}}
   };
 
   template<typename T> struct F;
   template<typename T> struct K;
 
-  int G, H;
+  int G, H; // expected-note {{here}}
 
   struct S {
     int C; // expected-note {{here}}
     template<typename T> struct C; // expected-error {{different kind of symbol}}
 
-    int D;
+    int D; // expected-note {{here}}
     template<typename T> struct D { // expected-error {{different kind of symbol}}
     };