2008/10/23 Arturs Zoldners <az@xxxxxxx>: > On Thu, 2008-10-23 at 04:14 -0700, @ wrote: >> why the following code cannot be compiled? >> >> template <typename TC> >> class C >> { >> template <typename TF> >> void f() {} >> }; >> >> template <typename T> >> void test() >> { >> C<T> c; >> c.f<int>(); >> } >> >> gcc-4.3.2 on "c.f<int>();" reports error: expected primary-expression before >> 'int' > > Try: > > void test() > { > C<T> c; > c.template f<int>(); > } Is this syntax described in TC++PL? I looked through my copy and couldn't find it. -- Andrew Bell andrew.bell.ia@xxxxxxxxx