------- Additional Comments From redi at gcc dot gnu dot org 2005-03-25 20:38 ------- This can be simplified to:
template <class T> void f() { T t; t.f<>(0); //should be t.template f<>(0); } If either 'f' is renamed g++ correctly reports an error. Comeau's online compiler behaves the same. -- What |Removed |Added ---------------------------------------------------------------------------- CC| |redi at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11814