diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-11-08 21:51:24 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-11-08 21:51:24 +0000 |
commit | 68b1453ce02d61ee24900903d441cd0057c17c0f (patch) | |
tree | 673f40f21104af4d5dbc99a73ee9048361b53b05 /clang/test/Parser/cxx-template-decl.cpp | |
parent | 5eb9bfc863a8d3ef4c8d723baf4bbac544063460 (diff) | |
download | bcm5719-llvm-68b1453ce02d61ee24900903d441cd0057c17c0f.tar.gz bcm5719-llvm-68b1453ce02d61ee24900903d441cd0057c17c0f.zip |
Fix %select numbering confusion between diagnostic and Diag call.
llvm-svn: 194281
Diffstat (limited to 'clang/test/Parser/cxx-template-decl.cpp')
-rw-r--r-- | clang/test/Parser/cxx-template-decl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Parser/cxx-template-decl.cpp b/clang/test/Parser/cxx-template-decl.cpp index 7200c9d78f7..7dcf482fd31 100644 --- a/clang/test/Parser/cxx-template-decl.cpp +++ b/clang/test/Parser/cxx-template-decl.cpp @@ -116,6 +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'}} namespace PR6184 { namespace N { |