Commit 6698dd72 by Shujing Zhao Committed by Shujing Zhao

re PR c++/22138 (Better error message for rejecting local template declaration.)

gcc/cp/
2010-07-05  Shujing Zhao  <pearly.zhao@oracle.com>

        PR c++/22138
        * parser.c (cp_parser_primary_expression): Error if local template is
        declared.

gcc/testsuite/
2010-07-05  Shujing Zhao  <pearly.zhao@oracle.com>

        PR c++/22138
        * g++.dg/parse/template25.C: New.

From-SVN: r161818
parent d42d62c8
2010-07-05 Shujing Zhao <pearly.zhao@oracle.com>
PR c++/22138
* parser.c (cp_parser_primary_expression): Error if local template is
declared.
2010-07-02 Le-Chun Wu <lcwu@google.com>
PR/44128
......
......@@ -3754,6 +3754,16 @@ cp_parser_primary_expression (cp_parser *parser,
case RID_AT_SELECTOR:
return cp_parser_objc_expression (parser);
case RID_TEMPLATE:
if (parser->in_function_body
&& (cp_lexer_peek_nth_token (parser->lexer, 2)->type
== CPP_LESS))
{
error_at (token->location,
"a template declaration cannot appear at block scope");
cp_parser_skip_to_end_of_block_or_statement (parser);
return error_mark_node;
}
default:
cp_parser_error (parser, "expected primary-expression");
return error_mark_node;
......
2010-07-05 Shujing Zhao <pearly.zhao@oracle.com>
PR c++/22138
* g++.dg/parse/template25.C: New.
2010-07-04 H.J. Lu <hongjiu.lu@intel.com>
PR rtl-optimization/44695
......
// PR c++/22318. Improve diagnostic for local template declaration.
// { dg-do compile }
void f(void)
{
template<typename T> class A /* { dg-error "a template declaration cannot appear at block scope" } */
{
};
}
void g(void)
{
template f<int>(); /* { dg-error "expected primary-expression" } */
/* { dg-error "expected ';'" "" { target *-*-* } 12 } */
}
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