template<class T>
struct A
{ };

template struct A<int>;


int main()
{
  return 0;
}
