aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/error18.C
diff options
context:
space:
mode:
authorDodji Seketeli <dseketel@redhat.com>2008-07-11 12:54:22 +0000
committerDodji Seketeli <dseketel@redhat.com>2008-07-11 12:54:22 +0000
commit2c31c8135582b317a6a3190554411e2dfbdcc94f (patch)
tree67a98c7d92d1fd0e083fc056e53338895ee34a08 /gcc/testsuite/g++.dg/parse/error18.C
parentbdc2dbcdc517f4ee18b4a4cb6a88aab25303162b (diff)
2008-07-11 Dodji Seketeli <dseketel@redhat.com>
PR c++/31754 * pt.c, semantic.c: * semantic.c (qualified_name_lookup_error, finish_id_expression): add a location_t parameter so that error message can have a more accurate location. * cp-tree.h: updated prototype * pt.c (tsubst_qualified_id): use location in error messages. * parser.c (cp_parser_postfix_expression, cp_parser_objc_statement, cp_parser_trait_expr, cp_parser_token_is_class_key, cp_parser_uncommitted_to_tentative_parse_p, cp_parser_check_for_invalid_template_id, cp_parser_is_string_literal, cp_parser_error, cp_parser_name_lookup_error, cp_parser_simulate_error, cp_parser_check_decl_spec, cp_parser_check_decl_spec, cp_parser_non_integral_constant_expression, cp_parser_diagnose_invalid_type_name, cp_parser_parse_and_diagnose_invalid_type_name, cp_parser_require_pragma_eol, cp_parser_make_typename_type, cp_parser_string_literal, cp_parser_primary_expression, cp_parser_primary_expression, cp_parser_unqualified_id, cp_parser_nested_name_specifier_opt, cp_parser_postfix_expression, cp_parser_postfix_dot_deref_expression, cp_parser_new_expression, cp_parser_direct_new_declarator, cp_parser_builtin_offsetof, cp_parser_label_for_labeled_statement, cp_parser_statement_seq_opt, cp_parser_jump_statement, cp_parser_block_declaration, cp_parser_simple_declaration, cp_parser_decl_specifier_seq, cp_parser_function_specifier_opt, cp_parser_decltype, cp_parser_mem_initializer_list, cp_parser_mem_initializer, cp_parser_mem_initializer_id, cp_parser_template_parameter, cp_parser_type_parameter, cp_parser_template_id, cp_parser_template_name, cp_parser_template_argument): likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@137716 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.dg/parse/error18.C')
-rw-r--r--gcc/testsuite/g++.dg/parse/error18.C3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/parse/error18.C b/gcc/testsuite/g++.dg/parse/error18.C
index 363aae99879..926af11eb6a 100644
--- a/gcc/testsuite/g++.dg/parse/error18.C
+++ b/gcc/testsuite/g++.dg/parse/error18.C
@@ -1,7 +1,8 @@
+// { dg-options "-fshow-column" }
// PR c++/16002
void f()
{
- double Q *= 5.0; // { dg-error "initializer" }
+ double Q *= 5.0; // { dg-error "12: error: expected initializer before '..' token" }
}