标签: c++ templates auto template-deduction
template<typename> struct CL{}; CL<char> fnc(); int main() { CL<auto> cl=fnc(); //error }
为什么它不正确?将自动推理为char的问题是什么?