summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/spec1.C
blob: 7467293e14580984b37b078136b1155d2387956a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Build don't link:

template <class S, class T>
class mem_fun1_t {
public:
  mem_fun1_t(S (T::*pf)(double)) {} 
};

template <class T>
class mem_fun1_t<void, T> { 
public:
  mem_fun1_t(void (T::*pf)(double)) {}
};

struct Operation {
  double eval(double) {}
};

int main() {
  mem_fun1_t<double, Operation> m(&Operation::eval);
}