(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
volatile1.C
// 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" }
}