template<typename T> class A { void a() { blabla(T()); Bla<T> b; b.bla(); } }; int main() { }
Standard input is empty
prog.cpp: In member function ‘void A<T>::a()’: prog.cpp:8: error: ‘Bla’ was not declared in this scope prog.cpp:8: error: expected primary-expression before ‘>’ token prog.cpp:8: error: ‘b’ was not declared in this scope
Standard output is empty