blob: dc0590472303af5859b4e1f35ac189f2b0e36199 [file] [log] [blame]
#pragma interface
template<class T>
struct C
{
explicit C(const T& t) : a(t) { }
virtual ~C() { }
T a;
};