Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / warning3.C
blobef4a6eea9ee71ba737530ed620b6d27bfef70f21
1 // { dg-do assemble  }
2 // { dg-options "-Wshadow" }
3 // Bug: overloading of 'A' for template causes bogus shadowing warnings.
5 template<class T> 
6 class A
8  public:
9    virtual ~A() {}
12 template class A<int>;