summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-12 14:39:25 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-12 14:39:25 +0000
commit17ca31e92a0e22806f7ab08e3bd7950fe9d41d6d (patch)
tree19910d805d5cb7cfa642612aea21ce5722033b73 /gcc/testsuite/g++.old-deja
parent4c559edd2db9c9b8c4c0ef255f302fb6a0750403 (diff)
downloadgcc-17ca31e92a0e22806f7ab08e3bd7950fe9d41d6d.tar.gz
PR c++/63201
* decl.c (start_decl): Handle specialization of member variable template. * pt.c (check_explicit_specialization): Adjust error. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215226 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.old-deja')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb103.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb103.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb103.C
index c272d940332..ffc51ee4411 100644
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb103.C
+++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb103.C
@@ -4,7 +4,7 @@
template <int nlimb, int i>
inline unsigned f (unsigned* ptr);
template <int nlimb>
-inline unsigned f<nlimb,nlimb> (unsigned* ptr) // { dg-error "function template partial specialization" }
+inline unsigned f<nlimb,nlimb> (unsigned* ptr) // { dg-error "partial specialization" }
{
return 1;
}