rs6000, remove vector set and vector init built-ins.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template35.C
blobd2c1a3c57de339ea49350483035d091484435de3
1 // { dg-do assemble  }
2 // Bug: instantiation of D() corrupts declaration of basis[].
4 struct B { };
5 template <int t>
6 struct D : public B 
8     D() : B () { }
9 };
11 B const * basis[] =
13     new D<0>,
14     new D<1>,