* parser.c (cp_parser_make_indirect_declarator): Don't wrap
cp_error_declarator.
From-SVN: r258549
2018-03-14 Jason Merrill <jason@redhat.com>
+ PR c++/84820 - no error for invalid qualified-id.
+ * parser.c (cp_parser_make_indirect_declarator): Don't wrap
+ cp_error_declarator.
+
PR c++/84801 - ICE with unexpanded pack in lambda.
* pt.c (check_for_bare_parameter_packs): Don't return early for a
lambda in non-template context.
cp_declarator *target,
tree attributes)
{
- if (code == ERROR_MARK)
+ if (code == ERROR_MARK || target == cp_error_declarator)
return cp_error_declarator;
if (code == INDIRECT_REF)
// Check that we do not complain about an unused
// compiler-generated variable.
A& = a; // { dg-error "6:expected unqualified-id before '=' token" "6" }
- // { dg-error "8:'a' was not declared in this scope" "8" { target *-*-* } .-1 }
}
--- /dev/null
+// PR c++/84820
+
+struct A {};
+
+template<int> struct B : A
+{
+ B()
+ {
+ A(&A::foo); // { dg-error "foo" }
+ }
+};
+
+B<0> b;