// Build don't link: #include template class foo { public: foo(); foo(vector v); private: vector v; T t; }; template foo::foo() :v(), t() {} template // ERROR - default parm for member template XFAIL *-*-* foo::foo(vector v_) :v(v_), t() {} foo a;