namespace ns
{
  template<class T> void f(T a)
  { }
}

using ns::f;


int main()
{
  int a = 0;
  f(a);

  return 0;
}
