Commit ee921ddf by Mark Mitchell Committed by Mark Mitchell

re PR c++/19667 (ICE on (very trivial) invalid)

	PR c++/19667
	* g++.dg/template/crash32.C: New test.

	PR c++/19667
	* pt.c (redeclare_class_template): Robustify.

From-SVN: r94402
parent 8f43f502
2005-01-28 Mark Mitchell <mark@codesourcery.com>
PR c++/19667
* pt.c (redeclare_class_template): Robustify.
2005-01-27 Steven Bosscher <stevenb@suse.de>
* decl.c (finish_case_label): Use SWITCH_STMT accessor macros
......
......@@ -3236,6 +3236,13 @@ redeclare_class_template (tree type, tree parms)
type. */
return;
if (!parms)
{
error ("template specifiers not specified in declaration of %qD",
tmpl);
return;
}
parms = INNERMOST_TEMPLATE_PARMS (parms);
tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
......
2005-01-28 Mark Mitchell <mark@codesourcery.com>
PR c++/19667
* g++.dg/template/crash32.C: New test.
2005-01-28 Ian Lance Taylor <ian@airs.com>
PR middle-end/16558
......
// PR c++/19667
struct integral_constant { };
template<typename _Tp>
struct is_function : public integral_constant { }; // { dg-error "previous" }
template<>
struct is_function : public integral_constant { }; // { 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