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

// Reported by Bruce Eckel <Bruce@EckelObjects.com>

// [temp.deduct.type]
// Make sure we treat <T> in the construct TT<T> as any type containing T.

template <class T> class C
{
};

template <class T, template <class> class TT> void f (TT<T *> &t)
{
}

int main ()
{
       C<char *> c;
       f(c);
}