aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/instantiate3.C
blob: 62062f7bfe99b53741907058e294e5e74198b7d8 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:

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

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