* config/bfin/bfin.c (effective_address_32bit_p): Return true for
[official-gcc/alias-decl.git] / gcc / testsuite / g++.dg / warn / volatile1.C
blob5b1050f9a1c0409725fbd25e01a9ce574036f1e5
1 // PR c++/26577
3 struct A
5   A(const A&);
6   A& operator=(const A&);
7   void baz() volatile;
8 };
9 void A::baz() volatile
11   *this;                        // { dg-warning "will not be accessed" }