Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.brendan / template29.C
blobaee91c2373e9c9b4abde03f4725661731b855788
1 // { dg-do assemble  }
2 // GROUPS passed templates
3    template <class ElementType> class A
4     { public:
5        A(ElementType) {}
6        ElementType get() const ;
7     };
9     template <class ElementType> ElementType A<ElementType>::get() const
10     { return ElementType(0); }
12 int main() { const A<short> a(3); }