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 23385a7..fe23d92 100644
--- a/test/SemaTemplate/class-template-decl.cpp
+++ b/test/SemaTemplate/class-template-decl.cpp
@@ -99,20 +99,20 @@
   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}}
     };