blob: 465e9a00e7a6cb91b54f1234106a7ca82da66cc9 [file] [log] [blame]
//Build don't link:
template<class T>
struct X{
T v;
X(){}
virtual ~X(){}
virtual inline T f(T x){return x;}
};
void f()
{
typedef int H;
X<H> y;
}