// // Created by light on 20-1-6. // #include std::string f(...) // Variadic functions are so "untyped" that... { return "..."; } template std::string f(const T &t)// ...this templated function got the precedence! { return "T"; } int main() { std::cout << f(1) << std::endl; }