// cpp2011-14-5-6-1-f2.cpp
// file2.c
template<class T>
void f(T);
void h(int* p) {
f(p); // calls f<int*>(int*)
}