diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-08 23:06:10 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-08 23:06:10 +0000 |
commit | 91bc73bf1ab7f2f129ec6534a775fb63faae9c58 (patch) | |
tree | e166a2212cff68dbbcdbfea09a41512e8aca714f | |
parent | 705cbc17339aa6030c948ffc0b938637cea370ec (diff) | |
download | bcm5719-llvm-91bc73bf1ab7f2f129ec6534a775fb63faae9c58.tar.gz bcm5719-llvm-91bc73bf1ab7f2f129ec6534a775fb63faae9c58.zip |
Fix name in test.
llvm-svn: 194291
-rw-r--r-- | clang/test/Parser/cxx-template-decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Parser/cxx-template-decl.cpp b/clang/test/Parser/cxx-template-decl.cpp index 7dcf482fd31..81269ce2541 100644 --- a/clang/test/Parser/cxx-template-decl.cpp +++ b/clang/test/Parser/cxx-template-decl.cpp @@ -116,7 +116,7 @@ void f2() { // PR3844 template <> struct S<int> { }; // expected-error{{explicit specialization of non-template struct 'S'}} -template <> union U<int> { }; // expected-error{{explicit specialization of non-template union 'S'}} +template <> union U<int> { }; // expected-error{{explicit specialization of non-template union 'U'}} namespace PR6184 { namespace N { |