+2019-06-04 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * decl.c (grokdeclarator): Use declarator->id_loc in two
+ additional places.
+
2019-06-04 Nathan Sidwell <nathan@acm.org>
* name-lookup.c (lookup_type_scope_1): Reimplement, handle local
unqualified_id = dname;
}
+ location_t loc = declarator ? declarator->id_loc : input_location;
+
/* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
qualified with a class-name, turn it into a METHOD_TYPE, unless
we know that the function is static. We take advantage of this
friendp = 0;
}
else
- permerror (declarator->id_loc,
- "extra qualification %<%T::%> on member %qs",
+ permerror (loc, "extra qualification %<%T::%> on member %qs",
ctype, name);
}
else if (/* If the qualifying type is already complete, then we
if (current_class_type
&& (!friendp || funcdef_flag || initialized))
{
- error (funcdef_flag || initialized
- ? G_("cannot define member function %<%T::%s%> "
- "within %qT")
- : G_("cannot declare member function %<%T::%s%> "
- "within %qT"),
- ctype, name, current_class_type);
+ error_at (loc, funcdef_flag || initialized
+ ? G_("cannot define member function %<%T::%s%> "
+ "within %qT")
+ : G_("cannot declare member function %<%T::%s%> "
+ "within %qT"),
+ ctype, name, current_class_type);
return error_mark_node;
}
}
else if (typedef_p && current_class_type)
{
- error ("cannot declare member %<%T::%s%> within %qT",
- ctype, name, current_class_type);
+ error_at (loc, "cannot declare member %<%T::%s%> within %qT",
+ ctype, name, current_class_type);
return error_mark_node;
}
}
}
}
- location_t loc = declarator ? declarator->id_loc : input_location;
-
/* If this is declaring a typedef name, return a TYPE_DECL. */
if (typedef_p && decl_context != TYPENAME)
{
+2019-06-04 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * g++.dg/concepts/pr60573.C: Test locations too.
+ * g++.dg/cpp0x/deleted13.C: Likewise.
+ * g++.dg/parse/error29.C: Likewise.
+ * g++.dg/parse/qualified4.C: Likewise.
+ * g++.dg/template/crash96.C Likewise.
+ * g++.old-deja/g++.brendan/crash22.C Likewise.
+ * g++.old-deja/g++.brendan/crash23.C Likewise.
+ * g++.old-deja/g++.law/visibility10.C Likewise.
+ * g++.old-deja/g++.other/decl5.C: Likewise.
+
2019-06-04 Bill Schmidt <wschmidt@linux.ibm.com>
PR target/78263
void foo(auto);
};
- void B::foo(auto) {} // { dg-error "cannot define" }
+ void B::foo(auto) {} // { dg-error "8:cannot define" }
struct X
{
};
};
- void Y::Z::foo(auto) {} // { dg-error "cannot define" }
+ void Y::Z::foo(auto) {} // { dg-error "10:cannot define" }
};
- void X::Y::Z::foo(auto) {} // { dg-error "cannot define" }
+ void X::Y::Z::foo(auto) {} // { dg-error "8:cannot define" }
};
struct B
{
- template<typename> friend void A::foo() = delete; // { dg-error "" }
+ template<typename> friend void A::foo() = delete; // { dg-error "34:cannot define" }
};
void operator delete(void *);
};
struct B {
- friend void A::foo() {} // { dg-error "22:cannot define member function 'A::foo' within 'B'" }
- friend void A::operator delete(void*) {} // { dg-error "39:cannot define member function 'A::operator delete' within 'B'" }
- friend A::A() {} // { dg-error "15:cannot define member function 'A::A' within 'B'" }
+ friend void A::foo() {} // { dg-error "15:cannot define member function 'A::foo' within 'B'" }
+ friend void A::operator delete(void*) {} // { dg-error "15:cannot define member function 'A::operator delete' within 'B'" }
+ friend A::A() {} // { dg-error "10:cannot define member function 'A::A' within 'B'" }
};
// { dg-options "" }
struct X {
- void X::bar() {} // { dg-error "" }
+ void X::bar() {} // { dg-error "8:extra qualification" }
};
template<int> struct A
{
- template<int> template<int> void A::foo() {} // { dg-error "extra qualification" }
+ template<int> template<int> void A::foo() {} // { dg-error "36:extra qualification" }
};
};
struct B {
- void A::a1(); // this used to die in chainon(), now grokdeclarator should// { dg-error "" } cannot declare.*
- void A::a2(); // should be fixed by the 930629 change.// { dg-error "" } cannot declare.*
+ void A::a1(); // this used to die in chainon(), now grokdeclarator should// { dg-error "10:cannot declare" } cannot declare.*
+ void A::a2(); // should be fixed by the 930629 change.// { dg-error "10:cannot declare" } cannot declare.*
};
void f ();
void g (int);
};
- void B::f () {}// { dg-error "" } .*
- void B::g (int val) {}// { dg-error "" } .*
+ void B::f () {}// { dg-error "8:cannot define" } .*
+ void B::g (int val) {}// { dg-error "8:cannot define" } .*
};
};
class deriv : public base {
- void base :: f1();// { dg-error "" } .*
+ void base :: f1();// { dg-error "8:cannot declare" } .*
};
int main ()
struct ::Q { // { dg-error "global qual" } ::Q not a member of B
int m;
};
- int A::fn() { // { dg-error "cannot define member" } A::fn not a member of B
+ int A::fn() { // { dg-error "7:cannot define member" } A::fn not a member of B
return 0;
}
void fn(struct ::Q &);