aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/instantiate3.C
blob: b40e684f3687b2f6ff12797e20a72af373a2be8d (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }

template <class T>
struct S
{
  S(const T&) {}
  S(int, long);
};

template S<double>::S(const double&);