12
template <class T> T& f(int x);
12345
int main() { f(3); }
1234
int main() { f<float>(3); }
123
f<float>(3);