diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-10-14 23:41:34 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-10-14 23:41:34 +0000 |
commit | e47f5a76ccd74c13d5c319e12720275ef58a84fc (patch) | |
tree | 604fe426fd2171a88f77f98b6758bfe5acc4a3c4 /clang/test/SemaTemplate/temp_explicit.cpp | |
parent | 2f61e0946a9e3fe24d102e13d02a07f44b2728ba (diff) | |
download | bcm5719-llvm-e47f5a76ccd74c13d5c319e12720275ef58a84fc.tar.gz bcm5719-llvm-e47f5a76ccd74c13d5c319e12720275ef58a84fc.zip |
Additional semantic checking for explicit template instantiations,
focusing on the scope- and qualifier-related semantic requirements in
C++ [temp.explicit]p2.
llvm-svn: 84154
Diffstat (limited to 'clang/test/SemaTemplate/temp_explicit.cpp')
-rw-r--r-- | clang/test/SemaTemplate/temp_explicit.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/temp_explicit.cpp b/clang/test/SemaTemplate/temp_explicit.cpp index 0292964a1a7..9c824d6f414 100644 --- a/clang/test/SemaTemplate/temp_explicit.cpp +++ b/clang/test/SemaTemplate/temp_explicit.cpp @@ -15,7 +15,6 @@ template class N::X1<int>; template class ::N::X1<int, float>; using namespace N; -template class X1<float>; // Check for some bogus syntax that probably means that the user // wanted to write an explicit specialization, but forgot the '<>' |