Commit fdd09134 by Steven Bosscher Committed by Steven Bosscher

re PR c++/13558 (ICE (illegal code) at cp/friend.c:200)

	PR c++/13558
	* parser.c (cp_parser_member_declaration): Any non-type is also
	not a class or a function.

From-SVN: r75776
parent 3c702a6f
2003-01-12 Steven Bosscher <stevenb@suse.de>
PR c++/13558
* parser.c (cp_parser_member_declaration): Any non-type is also
not a class or a function.
2004-01-12 Jason Merrill <jason@redhat.com>
PR c++/12815
......
......@@ -12226,7 +12226,7 @@ cp_parser_member_declaration (cp_parser* parser)
}
}
}
if (!type)
if (!type || !TYPE_P (type))
error ("friend declaration does not name a class or "
"function");
else
......
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