Commit 37978db4 by Jason Merrill Committed by Jason Merrill

re PR c++/65625 (ICE in make_typename_type, at cp/decl.c:3499)

	PR c++/65625
	* decl.c (make_typename_type): Handle seeing a variable template.

From-SVN: r221842
parent c23a9ec5
2015-04-01 Jason Merrill <jason@redhat.com>
PR c++/65625
* decl.c (make_typename_type): Handle seeing a variable template.
2015-04-01 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/56100
......
......@@ -3480,9 +3480,9 @@ make_typename_type (tree context, tree name, enum tag_types tag_type,
if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
{
name = TREE_OPERAND (name, 0);
if (TREE_CODE (name) == TEMPLATE_DECL)
if (DECL_TYPE_TEMPLATE_P (name))
name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
else if (TREE_CODE (name) == OVERLOAD)
if (TREE_CODE (name) != IDENTIFIER_NODE)
{
if (complain & tf_error)
error ("%qD is not a type", name);
......
// PR c++/65625
// { dg-do compile { target c++14 } }
namespace std {
template <typename T> int declval;
typename std::declval<> d; // { dg-error "not a type" }
}
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