namespace NS { struct C {}; void foo(); } template struct X {}; template struct A { A() { foo (X()); } void foo(X); }; template struct A;