Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.benjamin / 17922.C
blob2fc6204e9a8ee62e4203015106aca265008bb7eb
1 // { dg-do assemble  }
2 // 981204 bkoz
3 // g++/17922
5 class base { };
7 struct derived : public base   {
8    derived (const derived&);
9    derived (const base&);
12 class tahiti {
13 public: 
14    static void mf (derived);
17 void foo (const derived aaa) {
18    tahiti::mf(aaa);