#include #include using namespace std; template inline void f(const T& t) {cout << t + 1 << "\n";} int main() { f(0); //change T to int because 0 is int f(0); //change T to int * f(0); //change T to double * return EXIT_SUCCESS; }