1 // PR c++/18530
2 // { dg-options "-Wshadow" }
3 
4 struct A {
5   A();
6   ~A();
fooA7   void foo (int __ct, int __dt) {}
8 };
9