// PR c++/9820 template struct X { template static int test(...); template static int test(int *); static const int i = sizeof(X::template test(0)); }; template class X;