aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.cp/mb-templates.cc
blob: a7d4e2e7138d1fe250f2816d7d077ddda86ee275 (plain)
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);
}