1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include <iostream> using namespace std; template<class T> void foo(T i) { std::cout << "hi\n"; // set breakpoint here } int main() { foo<int>(0); foo<double>(0); foo<int>(1); foo<double>(1); foo<int>(2); foo<double>(2); }