Commit f87cb0b7 by Jason Merrill Committed by Jason Merrill

re PR c++/65646 (ICE in invalid syntax)

	PR c++/65646
	* decl.c (grokvardecl): Don't call check_explicit_specialization
	for non-template members of a class template.

From-SVN: r221810
parent b6dd42a9
2015-04-01 Jason Merrill <jason@redhat.com>
PR c++/65646
* decl.c (grokvardecl): Don't call check_explicit_specialization
for non-template members of a class template.
2015-04-01 Marek Polacek <polacek@redhat.com>
PR c++/65554
......
......@@ -8210,7 +8210,9 @@ grokvardecl (tree type,
DECL_INTERFACE_KNOWN (decl) = 1;
// Handle explicit specializations and instantiations of variable templates.
if (orig_declarator)
if (orig_declarator
/* For GCC 5 fix 65646 this way. */
&& current_tmpl_spec_kind (template_count) != tsk_none)
decl = check_explicit_specialization (orig_declarator, decl,
template_count, 0);
......
// PR c++/65646
template <typename = int> class A {};
template <> A<> &A<>::a; // { dg-error "" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment