blob: ac9dd4df35418f8b53a5b44cd317f5e4408f596d [file] [log] [blame]
// PR c++/26577
struct A
{
A(const A&);
A& operator=(const A&);
void baz() volatile;
};
void A::baz() volatile
{
*this; // { dg-warning "indirection will not access" }
}