template <class T>\nvoid func(T*& a)\n{\n\n}\n\nint main()\n{\n int a[5];\n func(a); // <-- Error here: no matching function for call to \xe2\x80\x98func(int [5])\xe2\x80\x99\n\n return 0;\n}\nRun Code Online (Sandbox Code Playgroud)\n为什么int[]不隐式转换为int*以便可以匹配模板函数?