diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-04-21 01:51:32 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-04-21 01:51:32 +0000 |
commit | 227e9f6f08a8715f341b37db6be50d60dff7f863 (patch) | |
tree | 0aa93f8223df3b7d2416df1c5f85169f3072bf45 /test/SemaTemplate/class-template-decl.cpp | |
parent | 71c598fc0515f7a95f2e0051ca056b6114970fe5 (diff) |
Fix test failure.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155271 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/class-template-decl.cpp')
-rw-r--r-- | test/SemaTemplate/class-template-decl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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<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}} }; |