blob: 2c427d912bf7e72d1ffc5567cda4d96f0bdfef24 [file] [log] [blame]
// Build don't link:
// GROUPS passed templates
template <class ElementType> class A
{ public:
A(ElementType) {}
ElementType get() const ;
};
template <class ElementType> ElementType A<ElementType>::get() const
{ return ElementType(0); }
int main() { const A<short> a(3); }