Commit b19fd0fd by Adam Butcher Committed by Adam Butcher

re PR c++/60190 ([c++1y] ICE with invalid return type of template lambda)

Fix PR c++/60190.

	PR c++/60190
	* parser.c (cp_parser_lambda_declarator_opt): Pop template parameter
	scope whenever a template parameter list has been started, independent
	of whether the function call operator was well-formed or not.

	PR c++/60190
	* g++.dg/cpp1y/pr60190.C: New testcase.

From-SVN: r207852
parent 223cdd15
2014-02-18 Adam Butcher <adam@jessamine.co.uk>
PR c++/60190
* parser.c (cp_parser_lambda_declarator_opt): Pop template parameter
scope whenever a template parameter list has been started, independent
of whether the function call operator was well-formed or not.
2014-02-12 Paolo Carlini <paolo.carlini@oracle.com> 2014-02-12 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/60047 PR c++/60047
......
...@@ -9127,15 +9127,15 @@ cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr) ...@@ -9127,15 +9127,15 @@ cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr)
DECL_ARTIFICIAL (fco) = 1; DECL_ARTIFICIAL (fco) = 1;
/* Give the object parameter a different name. */ /* Give the object parameter a different name. */
DECL_NAME (DECL_ARGUMENTS (fco)) = get_identifier ("__closure"); DECL_NAME (DECL_ARGUMENTS (fco)) = get_identifier ("__closure");
if (template_param_list)
{
fco = finish_member_template_decl (fco);
finish_template_decl (template_param_list);
--parser->num_template_parameter_lists;
}
else if (parser->fully_implicit_function_template_p)
fco = finish_fully_implicit_template (parser, fco);
} }
if (template_param_list)
{
fco = finish_member_template_decl (fco);
finish_template_decl (template_param_list);
--parser->num_template_parameter_lists;
}
else if (parser->fully_implicit_function_template_p)
fco = finish_fully_implicit_template (parser, fco);
finish_member_declaration (fco); finish_member_declaration (fco);
......
2014-02-18 Adam Butcher <adam@jessamine.co.uk>
PR c++/60190
* g++.dg/cpp1y/pr60190.C: New testcase.
2014-02-18 Uros Bizjak <ubizjak@gmail.com> 2014-02-18 Uros Bizjak <ubizjak@gmail.com>
PR target/60205 PR target/60205
......
// PR c++/60190
// { dg-do compile }
// { dg-options "-std=c++1y" }
auto f = []<int>() -> int() {}; // { dg-error "returning a function|expected" }
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