aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/ctor7.C
blob: ee65172fe75b2384e3ff51dde5946dba3075f3da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/27640

template < class T > struct refcounted : 
virtual T
{
  template < class A1 > refcounted (const A1 & a1) : T () { }
};
struct nfsserv {};
template < class T >
void
sfsserver_cache_alloc (int *ns)
{
  new refcounted < nfsserv > (*ns);
}
void
usage ()
{
  sfsserver_cache_alloc < int > ( 0);
}