FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template35.C
blobbe3f808252c3e03cf0534dbde3311736fbafff54
1 // Bug: instantiation of D() corrupts declaration of basis[].
2 // Build don't link:
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>,