blob: b7cc5bc478f908e8727572b3843a2ca5ec9912f7 [file] [log] [blame]
// { dg-lto-do link }
template < typename > struct X
{
template < typename > static int test ();
static const int i = sizeof (test < int >());
};
template struct X < int >;
int main()
{
return 0;
}