aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/template16.C
blob: ec13a24f86ed5bc216771c50d9a83c667ad94436 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link: 
// GROUPS passed templates
template<class T> class TList {
   typedef void (T::*TVOIDFUNT)();
   typedef T*   (T::*TTPFUNT)(T*);
};

class A;
class B : TList<A> { };