aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lto/20081119_0.C
blob: c77a4309811c12562ab44aa14aa491865206c893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class foo {
 public:
 foo () {}
 virtual ~foo() {}
 virtual void m() {}
};

template<typename t>
class bar : public foo {
 public:
 bar () {}
};

void
f1 (bar<int> *p)
{
 p->m();
}

int
main ()
{
 return 0;
}